PatrolInspectionContentService.java 974 B

123456789101112131415161718192021222324252627282930
  1. package com.usky.fire.service;
  2. import com.usky.common.core.bean.CommonPage;
  3. import com.usky.fire.domain.PatrolInspectionContent;
  4. import com.usky.common.mybatis.core.CrudService;
  5. import com.usky.fire.service.vo.PatrolInspectionContentExportVo;
  6. import com.usky.fire.service.vo.PatrolInspectionContentVo;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * 服务类
  11. * </p>
  12. *
  13. * @author JCB
  14. * @since 2022-07-15
  15. */
  16. public interface PatrolInspectionContentService extends CrudService<PatrolInspectionContent> {
  17. void addPatrolInspectionContent(PatrolInspectionContentVo patrolInspectionContentVo);
  18. void updatePatrolInspectionContent(PatrolInspectionContentVo patrolInspectionContentVo);
  19. void delPatrolInspectionContent(Integer id);
  20. CommonPage<PatrolInspectionContentVo> patrolInspectionContentList(String contentTitle, Integer pageNum, Integer pageSize, Integer id);
  21. List<PatrolInspectionContentExportVo> contentListExport(String contentTitle, String idList);
  22. }