|
|
|
@ -58,8 +58,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
</sql>
|
|
|
|
</sql>
|
|
|
|
|
|
|
|
|
|
|
|
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
<select id="selectUserList" parameterType="SysUser" resultMap="SysUserResult">
|
|
|
|
select u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber,u.card_id, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from sys_user u
|
|
|
|
select r.*, u.user_id, u.dept_id, u.nick_name, u.user_name, u.email, u.avatar, u.phonenumber,u.card_id, u.sex, u.status, u.del_flag, u.login_ip, u.login_date, u.create_by, u.create_time, u.remark, d.dept_name, d.leader from sys_user u
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
left join sys_dept d on u.dept_id = d.dept_id
|
|
|
|
|
|
|
|
join sys_user_role r on u.user_id=r.user_id
|
|
|
|
where u.del_flag = '0'
|
|
|
|
where u.del_flag = '0'
|
|
|
|
<if test="userId != null and userId != 0">
|
|
|
|
<if test="userId != null and userId != 0">
|
|
|
|
AND u.user_id = #{userId}
|
|
|
|
AND u.user_id = #{userId}
|
|
|
|
@ -83,6 +84,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="deptId != null and deptId != 0">
|
|
|
|
<if test="deptId != null and deptId != 0">
|
|
|
|
AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) ))
|
|
|
|
AND (u.dept_id = #{deptId} OR u.dept_id IN ( SELECT t.dept_id FROM sys_dept t WHERE find_in_set(#{deptId}, ancestors) ))
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="roleId != null and roleId != 1">
|
|
|
|
|
|
|
|
AND r.role_id = #{roleId}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
<!-- 数据范围过滤 -->
|
|
|
|
${params.dataScope}
|
|
|
|
${params.dataScope}
|
|
|
|
</select>
|
|
|
|
</select>
|
|
|
|
|