修复两处存在SQL注入漏洞问题

This commit is contained in:
RuoYi
2021-05-27 21:13:01 +08:00
parent 2f3949d732
commit af479c7838
2 changed files with 15 additions and 1 deletions

View File

@@ -147,7 +147,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
update_time = sysdate()
</set>
where dept_id in (${ancestors})
where find_in_set(#{deptId}, ancestors)
</update>
<delete id="deleteDeptById" parameterType="Long">