| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.mzl.flower.dto.request.sms.SmsTaskQueryDTO; |
| | | import com.mzl.flower.dto.request.sms.SmsTaskDetailQueryDTO; |
| | | import com.mzl.flower.dto.response.sms.SmsPhoneResultVO; |
| | | import com.mzl.flower.dto.response.sms.SmsTaskDetailVO; |
| | | import com.mzl.flower.entity.SmsTaskDetailDO; |
| | | |
| | |
| | | */ |
| | | public interface SmsTaskDetailService extends IService<SmsTaskDetailDO> { |
| | | |
| | | Page<SmsTaskDetailVO> queryPage(SmsTaskQueryDTO dto, Page page); |
| | | Page<SmsPhoneResultVO> queryPage(SmsTaskDetailQueryDTO dto, Page page); |
| | | |
| | | SmsTaskDetailVO getCountBySmsTaskId(Long id); |
| | | } |
| | | |