From d6a909e1a3b5fdb7fee5c9a694467f4b52d7d1f9 Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期一, 06 十一月 2023 16:14:26 +0800
Subject: [PATCH] OEE设备综合效率算法更新

---
 lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentOvertimeMapper.xml |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentOvertimeMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentOvertimeMapper.xml
index 65a66dd..686c7f3 100644
--- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentOvertimeMapper.xml
+++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEquipmentOvertimeMapper.xml
@@ -77,4 +77,17 @@
         </where>
         order by t2.effective_date asc
     </select>
+
+    <!--鏌ヨ鍔犵彮鏃堕暱-->
+    <select id="computeOvertime" resultType="org.jeecg.modules.mdc.entity.MdcEquipmentOvertime">
+        SELECT
+            meo.*
+        FROM
+            mdc_equipment_overtime meo
+            LEFT JOIN mdc_device_calendar mdc ON meo.calendar_id = mdc.id
+        WHERE
+            mdc.effective_date LIKE CONCAT(#{ validDate }, '%')
+            AND mdc.equipment_id = #{ equipmentId }
+            AND mdc.shift_sub_id = #{ shiftSubId }
+    </select>
 </mapper>
\ No newline at end of file

--
Gitblit v1.9.3