From 260687df882672c651f5f668d932b0f31c328ba4 Mon Sep 17 00:00:00 2001 From: songhuangfeng123 <shf18767906695@163.com> Date: 星期二, 05 七月 2022 16:20:01 +0800 Subject: [PATCH] 应急队伍新增 --- emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyTeamFileInfoMapper.xml | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyTeamFileInfoMapper.xml b/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyTeamFileInfoMapper.xml index c98c55a..92eccd9 100644 --- a/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyTeamFileInfoMapper.xml +++ b/emergency/emergency-service/src/main/resource/config/mapper/emergency/EmergencyTeamFileInfoMapper.xml @@ -19,23 +19,23 @@ insert into emergency_team_file( <if test="id != null ">id,</if> <if test="delFlag != null ">del_flag,</if> - <if test="gmtCreate != null and gmtCreate != ''">gmt_create,</if> - <if test="gmtModitify != null and gmtModitify != ''">gmt_moditify,</if> + <if test="gmtCreate != null ">gmt_create,</if> + <if test="gmtModitify != null ">gmt_moditify,</if> <if test="createUid != null ">create_uid,</if> <if test="updateUid != null ">update_uid,</if> <if test="teamId != null ">team_id,</if> <if test="fileUrl != null and fileUrl != ''">file_url,</if> - <if test="fileName != null and fileName != ''">file_name,</if> + <if test="fileName != null and fileName != ''">file_name</if> )values( <if test="id != null ">#{id},</if> <if test="delFlag != null ">#{delFlag},</if> - <if test="gmtCreate != null and gmtCreate != ''">#{gmtCreate},</if> - <if test="gmtModitify != null and gmtModitify != ''">#{gmtModitify},</if> + <if test="gmtCreate != null ">#{gmtCreate},</if> + <if test="gmtModitify != null ">#{gmtModitify},</if> <if test="createUid != null ">#{createUid},</if> <if test="updateUid != null ">#{updateUid},</if> <if test="teamId != null ">#{teamId},</if> <if test="fileUrl != null and fileUrl != ''">#{fileUrl},</if> - <if test="fileName != null and fileName != ''">#{fileName},</if> + <if test="fileName != null and fileName != ''">#{fileName}</if> ) </insert> -- Gitblit v1.9.2