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/MdcNoplanCloseMapper.xml | 14 ++++++++++++++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcNoplanCloseMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcNoplanCloseMapper.xml index 2a4548c..bfcf755 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcNoplanCloseMapper.xml +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcNoplanCloseMapper.xml @@ -30,4 +30,18 @@ </where> ORDER BY start_time ASC </select> + + + <select id="findNoplanTimeDuration" resultType="org.jeecg.modules.mdc.entity.MdcNoplanClose"> + SELECT + * + FROM + mdc_noplan_close + WHERE + equipment_id = #{ equipmentId } + AND ( ( start_time BETWEEN #{ startDate } AND #{ endDate } ) OR ( end_time BETWEEN #{ startDate } AND #{ endDate } ) ) + AND noplan_type = #{ noplanType } + ORDER BY + start_time ASC + </select> </mapper> \ No newline at end of file -- Gitblit v1.9.3