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; /** *

* 服务类 *

* * @author JCB * @since 2022-07-18 */ public interface PatrolInspectionPlanService extends CrudService { List planLeftList(); void addPatrolInspectionPlan(PatrolInspectionPlanVo patrolInspectionPlanVo); void updatePatrolInspectionPlan(PatrolInspectionPlanVo patrolInspectionPlanVo); void delPatrolInspectionPlan(Integer id); CommonPage patrolInspectionPlanList(String planName,Integer planType, Integer areaId,Integer pageNum, Integer pageSize, Integer id); List patrolInspectionSiteVoList(Integer planId, Integer areaId); }