From f8805dcb9cbfda1182761d3c1c9e345f53db3452 Mon Sep 17 00:00:00 2001
From: 叶松 <2217086471@qq.com>
Date: 星期四, 16 十一月 2023 09:17:24 +0800
Subject: [PATCH] 料仓搅拌站大屏书写
---
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