| | |
| | | import com.gkhy.safePlatform.targetDuty.model.dto.req.TargetCheckAndSubmitQueryCriteria; |
| | | import com.gkhy.safePlatform.targetDuty.model.dto.req.TargetMngQueryCriteria; |
| | | import com.gkhy.safePlatform.targetDuty.model.dto.resp.TargetMngDto; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.io.IOException; |
| | | import java.io.Serializable; |
| | | import java.util.List; |
| | | |
| | |
| | | * @author xurui |
| | | * @since 2022-07-20 11:49:22 |
| | | */ |
| | | public interface TargetMngService extends IService<TargetMng> { |
| | | public interface TargetMngService { |
| | | ResultVO<List<TargetMngDto>> queryAll(PageQuery<TargetMngQueryCriteria> pageQuery); |
| | | |
| | | List<TargetMng> queryAll(TargetMngQueryCriteria criteria); |
| | |
| | | ResultVO queryAll(Long uid, PageQuery<TargetCheckAndSubmitQueryCriteria> pageQuery); |
| | | |
| | | Object statistics(TargetMngQueryCriteria criteria); |
| | | |
| | | void delete(Long[] ids); |
| | | |
| | | void importData(MultipartFile file) throws IOException; |
| | | |
| | | void exportTemplate() throws IOException; |
| | | |
| | | void exportData(TargetMngQueryCriteria queryCriteria) throws IOException; |
| | | } |