| | |
| | | import com.gkhy.safePlatform.commons.vo.ResultVO; |
| | | import com.gkhy.safePlatform.commons.query.PageQuery; |
| | | import com.gkhy.safePlatform.targetDuty.model.dto.req.TargetDutyWorkApproveQueryCriteria; |
| | | import com.gkhy.safePlatform.targetDuty.model.dto.resp.TargetDutyWorkApproveDto; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | | |
| | |
| | | * @author xurui |
| | | * @since 2022-08-11 10:13:37 |
| | | */ |
| | | public interface TargetDutyWorkApproveService extends IService<TargetDutyWorkApprove> { |
| | | public interface TargetDutyWorkApproveService { |
| | | ResultVO queryAll(PageQuery<TargetDutyWorkApproveQueryCriteria> pageQuery); |
| | | |
| | | List<TargetDutyWorkApprove> queryAll(TargetDutyWorkApproveQueryCriteria criteria); |
| | |
| | | void addInfo(ContextCacheUser currentUser, TargetDutyWorkApprove targetDutyWorkApprove); |
| | | |
| | | ResultVO listCheckData(PageQuery<TargetDutyWorkApproveQueryCriteria> pageQuery); |
| | | |
| | | TargetDutyWorkApproveDto selectOne(Serializable id); |
| | | |
| | | void delete(Long[] ids); |
| | | } |