From a1d7ab78b0d4d93d4a7982bb60887358aa02ad79 Mon Sep 17 00:00:00 2001
From: kaiyu <404897439@qq.com>
Date: Fri, 21 May 2021 14:32:30 +0800
Subject: [PATCH] screen-manage 修改销毁tokenbug
---
screen-manage/src/main/resources/mapper/MonitorPointMapper.xml | 41 +++++++++++++++++++++++++++++++++++++++++
1 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/screen-manage/src/main/resources/mapper/MonitorPointMapper.xml b/screen-manage/src/main/resources/mapper/MonitorPointMapper.xml
index 5e9c800..44233f3 100644
--- a/screen-manage/src/main/resources/mapper/MonitorPointMapper.xml
+++ b/screen-manage/src/main/resources/mapper/MonitorPointMapper.xml
@@ -19,4 +19,45 @@
<result column="desc" property="desc" />
</resultMap>
+ <sql id="Base_Column_List">
+ mp.id,mp.name,mp.longitude,mp.latitude,mp.province_code,mp.city_code,mp.area_code,mp.address,mp.organization_id,mp.create_time,mp.update_time,mp.is_delete,mp.desc
+ </sql>
+
+ <update id="updateMonitorPoint" parameterType="java.util.Map">
+ update monitor_point
+ <set>
+ <if test="name != null">
+ name = #{name},
+ </if>
+ <if test="longitude != null">
+ longitude = #{longitude},
+ </if>
+ <if test="latitude != null">
+ latitude = #{latitude},
+ </if>
+ <if test="province_code != null">
+ province_code = #{province_code},
+ </if>
+ <if test="city_code != null">
+ city_code = #{city_code},
+ </if>
+ <if test="area_code != null">
+ area_code = #{area_code},
+ </if>
+ <if test="address != null">
+ address = #{address},
+ </if>
+ <if test="organization_id != null">
+ organization_id = #{organization_id},
+ </if>
+ <if test="desc != null">
+ `desc` = #{desc},
+ </if>
+ <if test="isDelete != null">
+ is_delete = #{isDelete},
+ </if>
+ </set>
+ where id = #{id}
+ </update>
+
</mapper>
\ No newline at end of file
--
Gitblit v1.8.0