PatrolInspectionPlanService.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. package com.usky.fire.service;
  2. import com.usky.common.core.bean.CommonPage;
  3. import com.usky.fire.domain.PatrolInspectionPlan;
  4. import com.usky.common.mybatis.core.CrudService;
  5. import com.usky.fire.service.vo.PatrolInspectionAreaVo;
  6. import com.usky.fire.service.vo.PatrolInspectionPlanDataVo;
  7. import com.usky.fire.service.vo.PatrolInspectionPlanVo;
  8. import com.usky.fire.service.vo.PatrolInspectionSiteVo;
  9. import java.util.List;
  10. /**
  11. * <p>
  12. * 服务类
  13. * </p>
  14. *
  15. * @author JCB
  16. * @since 2022-07-18
  17. */
  18. public interface PatrolInspectionPlanService extends CrudService<PatrolInspectionPlan> {
  19. List<PatrolInspectionAreaVo> planLeftList();
  20. void addPatrolInspectionPlan(PatrolInspectionPlanVo patrolInspectionPlanVo);
  21. void updatePatrolInspectionPlan(PatrolInspectionPlanVo patrolInspectionPlanVo);
  22. void delPatrolInspectionPlan(Integer id);
  23. CommonPage<PatrolInspectionPlanDataVo> patrolInspectionPlanList(String planName,Integer planType, Integer areaId,Integer pageNum, Integer pageSize, Integer id);
  24. List<PatrolInspectionSiteVo> patrolInspectionSiteVoList(Integer planId, Integer areaId);
  25. }