package org.jeecg.modules.eam.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; import org.apache.ibatis.annotations.Param; import org.jeecg.modules.eam.entity.CalibrationOrder; import org.jeecg.modules.eam.model.MaintenanceCycleVo; import java.util.List; import java.util.Map; /** * @Description: 检定工单 * @Author: jeecg-boot * @Date: 2023-04-23 * @Version: V1.0 */ public interface CalibrationOrderMapper extends BaseMapper { /** * 设备检定工单 创建时通过设备获取设备精度参数 * qsw 2023-7-18 */ List> getPrecisionParameterList(@Param("equipmentId")String equipmentId); /** *首页公司级 技术状态数量统计 * qsw 2024-3-13 */ List> getFactoryEquipmentTechnologyStatusList(); /** *首页公司级 设备报修情况统计 * qsw 2024-3-13 */ List> getFactoryReportRepairEquipmentList(); /** *首页公司级 本月三保计划 * qsw 2024-3-14 */ List> getFactoryThisMonthMaintenanceList(); /** *首页公司级 下月三保计划 * qsw 2024-3-14 */ List> getFactoryNextMonthMaintenanceList(); /** *首页公司级 下下月三保计划 * qsw 2024-3-14 */ List> getFactoryNextNextMonthMaintenanceList(); /** *首页技术状态数量统计 * qsw 2024-3-13 */ List> getEquipmentTechnologyStatusList(@Param("factoryModelId")String factoryModelId); /** *首页设备报修情况统计 * qsw 2024-3-13 */ List> getReportRepairEquipmentList(@Param("factoryModelId")String factoryModelId); /** *首页本月三保计划 * qsw 2024-3-14 */ List> getThisMonthMaintenanceList(@Param("factoryModelId")String factoryModelId); /** *首页下月三保计划 * qsw 2024-3-14 */ List> getNextMonthMaintenanceList(@Param("factoryModelId")String factoryModelId); /** *首页下下月三保计划 * qsw 2024-3-14 */ List> getNextNextMonthMaintenanceList(@Param("factoryModelId")String factoryModelId); }