查看bug修复

pull/5/head
liujun 2023-12-23 10:27:04 +08:00
parent 8be39e14d3
commit 40cbbe7dcc
2 changed files with 11 additions and 11 deletions

View File

@ -17,7 +17,7 @@
f.PHONE, f.PHONE,
f.CREATE_TIME, f.CREATE_TIME,
f.DEPART_STATE, f.DEPART_STATE,
f.ISDELETE, f.IS_DELETE,
f.AGE, f.AGE,
f.HKLOCAL, f.HKLOCAL,
f.ADDRESS, f.ADDRESS,
@ -76,7 +76,7 @@
PHONE, PHONE,
CREATE_TIME, CREATE_TIME,
DEPART_STATE, DEPART_STATE,
ISDELETE, IS_DELETE,
AGE, AGE,
HKLOCAL, HKLOCAL,
ADDRESS, ADDRESS,
@ -135,7 +135,7 @@
#{PHONE}, #{PHONE},
#{CREATE_TIME}, #{CREATE_TIME},
#{DEPART_STATE}, #{DEPART_STATE},
#{ISDELETE}, #{IS_DELETE},
#{AGE}, #{AGE},
#{HKLOCAL}, #{HKLOCAL},
#{ADDRESS}, #{ADDRESS},
@ -200,7 +200,7 @@
update update
<include refid="tableName"></include> <include refid="tableName"></include>
set set
ISDELETE = '1' IS_DELETE = '1'
where where
XGF_USER_ID = #{XGF_USER_ID} XGF_USER_ID = #{XGF_USER_ID}
</delete> </delete>
@ -218,7 +218,7 @@
PHONE = #{PHONE}, PHONE = #{PHONE},
CREATE_TIME = #{CREATE_TIME}, CREATE_TIME = #{CREATE_TIME},
DEPART_STATE = #{DEPART_STATE}, DEPART_STATE = #{DEPART_STATE},
ISDELETE = #{ISDELETE}, IS_DELETE = #{IS_DELETE},
AGE = #{AGE}, AGE = #{AGE},
HKLOCAL = #{HKLOCAL}, HKLOCAL = #{HKLOCAL},
ADDRESS = #{ADDRESS}, ADDRESS = #{ADDRESS},
@ -287,7 +287,7 @@
from from
<include refid="tableName"></include> <include refid="tableName"></include>
f f
where f.ISDELETE = '0' and f.CORPINFO_ID = #{pd.CORPINFO_ID} where f.IS_DELETE = '0' and f.CORPINFO_ID = #{pd.CORPINFO_ID}
<if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 --> <if test="pd.KEYWORDS != null and pd.KEYWORDS != ''"><!-- 关键词检索 -->
and(f.BELONG_TO_CORP_NAME LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%')) and(f.BELONG_TO_CORP_NAME LIKE CONCAT(CONCAT('%', #{pd.KEYWORDS}),'%'))
</if> </if>
@ -302,7 +302,7 @@
from from
<include refid="tableName"></include> <include refid="tableName"></include>
f f
where f.ISDELETE = '0' and f.CORPINFO_ID = #{pd.CORPINFO_ID} where f.IS_DELETE = '0' and f.CORPINFO_ID = #{pd.CORPINFO_ID}
</select> </select>
<!-- 批量删除 --> <!-- 批量删除 -->
@ -310,7 +310,7 @@
update update
<include refid="tableName"></include> <include refid="tableName"></include>
set set
ISDELETE = '1', IS_DELETE = '1',
OPERATOR = #{OPERATOR}, OPERATOR = #{OPERATOR},
OPERATTIME = #{OPERATTIME} OPERATTIME = #{OPERATTIME}
where where
@ -327,7 +327,7 @@
from from
<include refid="tableName"></include> <include refid="tableName"></include>
f f
where f.ISDELETE = '0' where f.IS_DELETE = '0'
and XFG_USER_DETAILS_ID in and XFG_USER_DETAILS_ID in
<foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")"> <foreach item="item" index="index" collection="ArrayDATA_IDS" open="(" separator="," close=")">
#{item} #{item}

View File

@ -210,7 +210,7 @@
from from
xgf_user a xgf_user a
left join xgf_user_details b on a.XGF_USER_ID = b.XGF_USER_ID left join xgf_user_details b on a.XGF_USER_ID = b.XGF_USER_ID
where 1=1 where a.IS_DELETE = '0'
<if test="pd.STATUS != null and pd.STATUS != ''"> <if test="pd.STATUS != null and pd.STATUS != ''">
and a.STATUS = #{pd.STATUS} and a.STATUS = #{pd.STATUS}
</if> </if>
@ -302,7 +302,7 @@
left join `qa-gwj-regulatory`.bus_class_message rcm on rf.CLASS_MESSAGE_ID = rcm.CLASS_MESSAGE_ID left join `qa-gwj-regulatory`.bus_class_message rcm on rf.CLASS_MESSAGE_ID = rcm.CLASS_MESSAGE_ID
left join sys_dictionaries sdp on sdp.DICTIONARIES_ID = rcm.PLACE left join sys_dictionaries sdp on sdp.DICTIONARIES_ID = rcm.PLACE
left join sys_dictionaries sdt on sdt.DICTIONARIES_ID = rcm.TRAINING_TYPE left join sys_dictionaries sdt on sdt.DICTIONARIES_ID = rcm.TRAINING_TYPE
where rf.USER_ID = #{USER_ID} where rf.USER_ID = #{USER_ID} and rf.ISDELETE = '0'
order by rf.CREATE_TIME desc order by rf.CREATE_TIME desc
</select> </select>