forked from ard/ruoyi-api

‘liusuyi’
2023-07-04 fbdd09cee9f631a315dc654f587700f7bb466ea2
修改用户查询userId格式错误
1 files modified
2 ■■■ changed files
ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml 2 ●●● patch | view | raw | blame | history
ruoyi-system/src/main/resources/mapper/system/SysUserMapper.xml
@@ -90,7 +90,7 @@
        u
        left join sys_dept d on u.dept_id = d.dept_id
        where u.del_flag = '0'
        <if test="userId != null and userId != 0">
        <if test="userId != null and userId != ''">
            AND u.user_id = #{userId}
        </if>
        <if test="userName != null and userName != ''">