PatrolInspectionPersonnelService.java 949 B

12345678910111213141516171819202122232425262728293031
  1. package com.usky.fire.service;
  2. import com.usky.common.core.bean.CommonPage;
  3. import com.usky.fire.domain.PatrolInspectionPersonnel;
  4. import com.usky.common.mybatis.core.CrudService;
  5. import com.usky.fire.service.vo.PatrolInspectionAreaVo;
  6. import com.usky.fire.service.vo.PatrolInspectionPersonnelVo;
  7. import java.util.List;
  8. /**
  9. * <p>
  10. * 巡检人员表 服务类
  11. * </p>
  12. *
  13. * @author JCB
  14. * @since 2022-07-26
  15. */
  16. public interface PatrolInspectionPersonnelService extends CrudService<PatrolInspectionPersonnel> {
  17. void addPatrolInspectionPersonnel(PatrolInspectionPersonnel patrolInspectionPersonnel);
  18. void updatePatrolInspectionPersonnel(PatrolInspectionPersonnel patrolInspectionPersonnel);
  19. void delPatrolInspectionPersonnel(Integer id);
  20. CommonPage<PatrolInspectionPersonnelVo> patrolInspectionPersonnelList(Integer areaId,Integer pageNum, Integer pageSize,Integer id);
  21. List<PatrolInspectionAreaVo> personnelLeftList();
  22. }