mirror of https://github.com/jeecgboot/jeecg-boot
【#4127】sql漏洞写法修复
parent
01602bd60a
commit
958cf01649
|
@ -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">
|
||||
|
|
Loading…
Reference in New Issue