From a5e17e09ce2426ceca8362248bb5e46605bd35d6 Mon Sep 17 00:00:00 2001
From: liusheng <337615773@qq.com>
Date: 星期四, 04 七月 2024 20:26:18 +0800
Subject: [PATCH] 代码提交
---
smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml b/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml
index afaf329..d2518d2 100644
--- a/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml
+++ b/smartor/src/main/resources/mapper/smartor/ServiceThirdDataMapper.xml
@@ -12,6 +12,7 @@
<result property="factory" column="factory"/>
<result property="createTime" column="create_time"/>
<result property="isDeal" column="is_deal"/>
+ <result property="userInfoId" column="user_info_id"/>
</resultMap>
<sql id="selectServiceThirdDataVo">
@@ -22,6 +23,7 @@
factory,
create_time,
is_deal,
+ user_info_id,
remark
from service_third_data
</sql>
@@ -104,6 +106,9 @@
update service_third_data
<trim prefix="SET" suffixOverrides=",">
is_deal=1,
+ <if test="userInfoId != null">
+ user_info_id=#{userInfoId}
+ </if>
<if test="remark != null and remark != ''">remark = #{remark}</if>
</trim>
where id = #{id}
--
Gitblit v1.9.3