12345678910111213141516171819202122232425262728293031323334 |
- package com.usky.fire.service;
- import com.usky.common.core.bean.CommonPage;
- import com.usky.fire.domain.PatrolInspectionPlan;
- import com.usky.common.mybatis.core.CrudService;
- import com.usky.fire.service.vo.PatrolInspectionAreaVo;
- import com.usky.fire.service.vo.PatrolInspectionPlanDataVo;
- import com.usky.fire.service.vo.PatrolInspectionPlanVo;
- import com.usky.fire.service.vo.PatrolInspectionSiteVo;
- import java.util.List;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author JCB
- * @since 2022-07-18
- */
- public interface PatrolInspectionPlanService extends CrudService<PatrolInspectionPlan> {
- List<PatrolInspectionAreaVo> planLeftList();
- void addPatrolInspectionPlan(PatrolInspectionPlanVo patrolInspectionPlanVo);
- void updatePatrolInspectionPlan(PatrolInspectionPlanVo patrolInspectionPlanVo);
- void delPatrolInspectionPlan(Integer id);
- CommonPage<PatrolInspectionPlanDataVo> patrolInspectionPlanList(String planName,Integer planType, Integer areaId,Integer pageNum, Integer pageSize, Integer id);
- List<PatrolInspectionSiteVo> patrolInspectionSiteVoList(Integer planId, Integer areaId);
- }
|