From a4e554b7e6c5b98e728f96be80a12b0b04eebd48 Mon Sep 17 00:00:00 2001
From: cuijian <cuijian@xalxzn.com>
Date: 星期三, 22 十一月 2023 19:10:28 +0800
Subject: [PATCH] 设备完好率、设备开动率报表逻辑开发

---
 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