From 7fbb8dedb1112e1d87b8ccfb8d9df9bb763ec024 Mon Sep 17 00:00:00 2001 From: cuilei <ray_tsu1@163.com> Date: 星期二, 22 七月 2025 17:48:17 +0800 Subject: [PATCH] 点检、周保执行中设备异常报修消息推送 --- lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamReportRepairService.java | 33 +++++++++++++++++++++++++++++++++ 1 files changed, 33 insertions(+), 0 deletions(-) diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamReportRepairService.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamReportRepairService.java index 059a9f6..6ff384b 100644 --- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamReportRepairService.java +++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/service/IEamReportRepairService.java @@ -7,7 +7,12 @@ import org.jeecg.modules.eam.entity.EamReportRepair; import org.jeecg.modules.eam.entity.EamWeekMaintenanceOrderDetail; import org.jeecg.modules.eam.request.EamReportRepairQuery; +import org.jeecg.modules.eam.vo.EquipmentRepairListVO; +import org.jeecg.modules.eam.vo.EquipmentRepairStatistics; +import org.jeecg.modules.eam.vo.EquipmentRepairStatusStatistics; +import org.jeecg.modules.eam.vo.FaultTypeStatisticsVO; +import java.time.LocalDate; import java.util.List; /** @@ -54,4 +59,32 @@ */ boolean edit(EamReportRepair eamReportRepair); + /** + * 鏌ヨ鎶ヤ慨鍒楄〃 + * @param productionId + * @param firstOfMonth + * @param today + * @return + */ + List<EquipmentRepairStatistics> equipmentRepairStatistics(String productionId, LocalDate firstOfMonth, LocalDate today); + + /** + * 缁翠慨鐘舵�佺粺璁� + * @return + */ + EquipmentRepairStatusStatistics repairStatusStatistics(); + + /** + * 缁翠慨鍒楄〃 + * @return + */ + List<EquipmentRepairListVO> repairList(); + + /** + * 鏁呴殰鍒嗙被缁熻 + * @param start + * @param end + * @return + */ + List<FaultTypeStatisticsVO> faultTypeStatistics(String start, String end); } -- Gitblit v1.9.3