| | |
| | | package org.jeecg.modules.eam.service; |
| | | |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.jeecg.modules.eam.entity.CalibrationOrderDetail; |
| | | import org.jeecg.modules.eam.entity.CalibrationOrder; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | |
| | | List<Map<String, Object>> getThisMonthMaintenanceFinishList(String workCenterId,String areaId); |
| | | |
| | | /** |
| | | *工段级 本月三保延期数量 |
| | | * qsw 2024-3-20 |
| | | */ |
| | | List<Map<String, Object>> get3MaintenancePostponeCount(String areaId); |
| | | |
| | | /** |
| | | *工段级 本月三保超期数量 |
| | | * qsw 2024-3-20 |
| | | */ |
| | | List<Map<String, Object>> get3MaintenanceOverdueCount(String areaId); |
| | | |
| | | /** |
| | | *首页二保计划展示 |
| | | * qsw 2024-3-15 |
| | | */ |
| | | List<Map<String, Object>> getTwoMaintenancePlanList(String productionCode); |
| | | |
| | | /** |
| | | *首页 第四级 对应工区下,设备台账信息展示; |
| | | * qsw 2024-4-22 |
| | | */ |
| | | List<Map<String, Object>> getAreaEquipmentList(String equipmentNum,String areaId,List<String> equipmentIds); |
| | | |
| | | /** |
| | | *首页 第四级 对应工区下,设备台账信息展示; |
| | | * qsw 2024-4-22 |
| | | */ |
| | | List<Map<String, Object>> getOperationCertificate(String username); |
| | | |
| | | |
| | | } |