mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-08 07:29:13 +00:00
【#4127】sql漏洞写法修复
This commit is contained in:
@@ -157,10 +157,16 @@
|
||||
</foreach>
|
||||
</delete>
|
||||
|
||||
<!-- 更新空字符串为null -->
|
||||
<update id="updateNullByEmptyString">
|
||||
UPDATE sys_user SET ${fieldName} = NULL WHERE ${fieldName} = ''
|
||||
</update>
|
||||
<!-- 更新空字符串为null -->
|
||||
<update id="updateNullByEmptyString">
|
||||
UPDATE sys_user
|
||||
<if test="fieldName == 'email'">
|
||||
SET email = NULL WHERE email = ''
|
||||
</if>
|
||||
<if test="fieldName == 'phone'">
|
||||
SET phone = NULL WHERE phone = ''
|
||||
</if>
|
||||
</update>
|
||||
|
||||
<!-- 通过多个部门IDS,查询部门下的用户信息 -->
|
||||
<select id="queryByDepIds" resultType="org.jeecg.modules.system.entity.SysUser">
|
||||
|
Reference in New Issue
Block a user