修改系统管理-用户管理过滤条件

dev_xd
lj7788 2025-08-31 21:49:26 +08:00
parent 8c11119fcc
commit 58ae637bb0
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from sys_user u
left join sys_dept d on u.dept_id = d.dept_id
left join sys_user_ext ex on u.user_id = ex.user_id and u.dept_id = ex.project_id
where u.del_flag = '0' and ex.user_type != '99'
where u.del_flag = '0' and ex.user_type in ( '00','08')
<if test="userId != null and userId != 0">
AND u.user_id = #{userId}
</if>