From d953c2a400cd1dcafd2ce987181905dc3713d2ca Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期五, 08 三月 2024 18:08:21 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml b/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml
index 4ec08a6..afaf329 100644
--- a/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml
@@ -15,7 +15,14 @@
</resultMap>
<sql id="selectServiceThirdDataVo">
- select id, data_type, data_type_explain, data_info, factory, create_time, is_deal
+ select id,
+ data_type,
+ data_type_explain,
+ data_info,
+ factory,
+ create_time,
+ is_deal,
+ remark
from service_third_data
</sql>
@@ -93,10 +100,11 @@
</insert>
- <update id="updateIsDeal" parameterType="long">
+ <update id="updateIsDeal" parameterType="com.smartor.domain.ServiceThirdData">
update service_third_data
<trim prefix="SET" suffixOverrides=",">
- is_deal=1
+ is_deal=1,
+ <if test="remark != null and remark != ''">remark = #{remark}</if>
</trim>
where id = #{id}
</update>
--
Gitblit v1.9.3