package org.jeecg.modules.eam.service; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.eam.entity.DailyInspectionStandard; import java.util.List; import java.util.Map; /** * @Description: mom_eam_daily_inspection_standard * @Author: jeecg-boot * @Date: 2023-03-10 * @Version: V1.0 */ public interface IDailyInspectionStandardService extends IService { IPage> getInspectionStandardList(Integer pageNo, Integer pageSize, Map params); /** *创建日常点检工单获取,日常点检标准 * 2023-8-2 qsw */ IPage> findInspectionStandardList(Integer pageNo, Integer pageSize, Map params); List> getInspectionStandardList(); /** *日常点检标准 根据设备台账 获取对象部门(使用部门) */ IPage> getDepartByEquipment(Integer pageNo, Integer pageSize, Map params); }