From fdbf97aa86cfe82f9f46ea03c77447e491d1e1ba Mon Sep 17 00:00:00 2001 From: lius <Lius2225@163.com> Date: 星期五, 28 七月 2023 09:18:11 +0800 Subject: [PATCH] update --- lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml index e85db73..9c855df 100644 --- a/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml +++ b/lxzn-module-mdc/src/main/java/org/jeecg/modules/mdc/mapper/xml/MdcEfficiencyReportMapper.xml @@ -86,8 +86,8 @@ mdc_equipment t2 LEFT JOIN mdc_equipment_statistical_shift_info t1 ON t1.equipment_id = t2.equipment_id <where> - AND t1.the_date <= #{ endTime } - AND t1.the_date >= #{ startTime } + AND t1.the_date <= #{ vo.endTime } + AND t1.the_date >= #{ vo.startTime } <if test="vo.equipmentIdList != null and vo.equipmentIdList.size() > 0 "> AND t2.equipment_id IN <foreach collection="vo.equipmentIdList" item="id" index="index" open="(" close=")" separator=","> -- Gitblit v1.9.3