From 365352b91d6b70292c66c7e24fa41b5854e80e1a Mon Sep 17 00:00:00 2001
From: shishuaikang <280848880@qq.com>
Date: 星期二, 21 十一月 2023 11:01:30 +0800
Subject: [PATCH] web:安全管理-区域巡检-任务打卡.时间筛选bug修改
---
hd/pipe/engineeringManage/src/main/resources/mapping/MouldMapper.xml | 22 +++++++++++++++++++++-
1 files changed, 21 insertions(+), 1 deletions(-)
diff --git a/hd/pipe/engineeringManage/src/main/resources/mapping/MouldMapper.xml b/hd/pipe/engineeringManage/src/main/resources/mapping/MouldMapper.xml
index 51a6030..2dd25ec 100644
--- a/hd/pipe/engineeringManage/src/main/resources/mapping/MouldMapper.xml
+++ b/hd/pipe/engineeringManage/src/main/resources/mapping/MouldMapper.xml
@@ -18,7 +18,9 @@
t.come_factory_time as comeFactoryTime,
t.current_cycle_time as currentCycleTime,
t.status as status,
- t.grouting_holes as groutingHoles
+ t.grouting_holes as groutingHoles,
+ t.warning_value as warningValue,
+ t.warning_day as warningDay
</sql>
<sql id="condition_query">
@@ -188,6 +190,12 @@
<if test="groutingHoles != null and groutingHoles!=''">
grouting_holes,
</if>
+ <if test="warningValue != null">
+ warning_value,
+ </if>
+ <if test="warningDay != null">
+ warning_day,
+ </if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides="," >
@@ -245,6 +253,12 @@
<if test="groutingHoles != null and groutingHoles!=''">
#{groutingHoles},
</if>
+ <if test="warningValue != null">
+ #{warningValue},
+ </if>
+ <if test="warningDay != null">
+ #{warningDay},
+ </if>
</trim>
</insert>
@@ -301,6 +315,12 @@
<if test="updateTime != null">
update_time = #{updateTime},
</if>
+ <if test="warningValue != null">
+ warning_value=#{warningValue},
+ </if>
+ <if test="warningDay != null">
+ warning_day=#{warningDay},
+ </if>
</set>
where mould_id=#{mouldId}
</update>
--
Gitblit v1.9.3