From 1bdd6405e8caffc058066bdd26cb6de1ea9cf7ea Mon Sep 17 00:00:00 2001
From: songhuangfeng123 <shf18767906695@163.com>
Date: Tue, 09 Aug 2022 18:35:39 +0800
Subject: [PATCH] 8-9fix
---
emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyPlanLogInfoMapper.xml | 51 ++++++++++++++++++++++++++++++++++++++++-----------
1 files changed, 40 insertions(+), 11 deletions(-)
diff --git a/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyPlanLogInfoMapper.xml b/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyPlanLogInfoMapper.xml
index 5b4b6fe..6125300 100644
--- a/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyPlanLogInfoMapper.xml
+++ b/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyPlanLogInfoMapper.xml
@@ -8,13 +8,27 @@
<id column="id" property="id" jdbcType="BIGINT"/>
<result column="plan_id" property="planId"/>
<result column="user_uid" property="userUid"/>
+ <result column="user_name" property="userName"/>
<result column="start_create" property="startCreate"/>
<result column="remark" property="remark"/>
</resultMap>
<select id="selectEmergencyPlanLogList" resultMap="emergencyPlanLogInfoDOResult">
- select id,`plan_id`,`user_uid`,`start_create`,`remark` from emergency_plan_log where del_flag = 0
- <if test="query.planId != null ">and `plan_id` = #{query.planId}</if>
+
+ SELECT
+ a.id,
+ a.`plan_id`,
+ a.`user_uid`,
+ a.user_name,
+ a.`start_create`,
+ a.`remark`,
+ b.`name` AS planName
+ FROM
+ emergency_plan_log a
+ LEFT JOIN emergency_plan b ON a.plan_id = b.id
+ WHERE
+ a.del_flag = 0
+ <if test="query.planId != null ">and a.`plan_id` = #{query.planId}</if>
</select>
<insert id="addEmergencyPlanLog" parameterType="com.gkhy.safePlatform.emergency.entity.EmergencyPlanLogInfo"
@@ -27,9 +41,10 @@
<if test="gmtModitify != null ">gmt_moditify,</if>
<if test="createUid != null ">create_uid,</if>
<if test="updateUid != null ">update_uid,</if>
- <if test="plan_id != null ">plan_id,</if>
- <if test="user_uid != null ">user_uid,</if>
- <if test="start_create != null ">start_create,</if>
+ <if test="planId != null ">plan_id,</if>
+ <if test="userUid != null ">user_uid,</if>
+ <if test="userName != null and userName != ''">user_name,</if>
+ <if test="startCreate != null ">start_create,</if>
<if test="remark != null and remark != ''">remark,</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
@@ -39,27 +54,41 @@
<if test="gmtModitify != null ">#{gmtModitify},</if>
<if test="createUid != null ">#{createUid},</if>
<if test="updateUid != null ">#{updateUid},</if>
- <if test="plan_id != null ">#{planId},</if>
- <if test="user_uid != null ">#{userUid},</if>
- <if test="start_create != null ">#{startCreate},</if>
+ <if test="planId != null ">#{planId},</if>
+ <if test="userUid != null ">#{userUid},</if>
+ <if test="userName != null and userName != ''">#{userName},</if>
+ <if test="startCreate != null ">#{startCreate},</if>
<if test="remark != null and remark != ''">#{remark},</if>
</trim>
</insert>
<select id="selectEmergencyPlanLogById" resultMap="emergencyPlanLogInfoDOResult">
- select id,`plan_id`,`user_uid`,`start_create`,`remark` from emergency_plan_log where del_flag = 0 and id = #{id}
+ SELECT
+ a.id,
+ a.`plan_id`,
+ a.`user_uid`,
+ a.user_name,
+ a.`start_create`,
+ a.`remark`,
+ b.`name` AS planName
+ FROM
+ emergency_plan_log a
+ LEFT JOIN emergency_plan b ON a.plan_id = b.id
+ WHERE
+ a.del_flag = 0
+ AND a.id = #{id}
+
</select>
<update id="updateEmergencyPlanLog" parameterType="com.gkhy.safePlatform.emergency.entity.EmergencyPlanLogInfo">
update emergency_plan_log
<trim prefix="SET" suffixOverrides=",">
- <if test="gmtCreate != null ">gmt_create = #{gmtCreate},</if>
<if test="gmtModitify != null ">gmt_moditify = #{gmtModitify},</if>
- <if test="createUid != null ">create_uid = #{createUid},</if>
<if test="updateUid != null ">update_uid = #{updateUid},</if>
<if test="planId != null ">plan_id = #{planId},</if>
<if test="userUid != null ">user_uid = #{userUid},</if>
+ <if test="userName != null and userName != ''">user_name = #{userName},</if>
<if test="startCreate != null ">start_create = #{startCreate},</if>
<if test="remark != null and remark != ''">remark = #{remark},</if>
</trim>
--
Gitblit v1.9.2