|
@@ -34,23 +34,39 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="deptId != null and deptId != 0">
|
|
|
AND dept_id = #{deptId}
|
|
|
</if>
|
|
|
- <if test="parentId != null and parentId != 0">
|
|
|
+ <if test="parentId != null and parentId != 0">
|
|
|
AND parent_id = #{parentId}
|
|
|
</if>
|
|
|
<if test="deptName != null and deptName != ''">
|
|
|
AND dept_name like concat('%', #{deptName}, '%')
|
|
|
</if>
|
|
|
order by d.parent_id, d.order_num
|
|
|
- </select>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectDeptListAll" parameterType="SysDept" resultMap="SysDeptResult">
|
|
|
+ <include refid="selectDeptVo"/>
|
|
|
+ where d.del_flag = '1'
|
|
|
+ <if test="deptId != null and deptId != 0">
|
|
|
+ AND dept_id = #{deptId}
|
|
|
+ </if>
|
|
|
+ <if test="parentId != null and parentId != 0">
|
|
|
+ AND parent_id = #{parentId}
|
|
|
+ </if>
|
|
|
+ <if test="deptName != null and deptName != ''">
|
|
|
+ AND dept_name like concat('%', #{deptName}, '%')
|
|
|
+ </if>
|
|
|
+ order by d.parent_id, d.order_num
|
|
|
+ </select>
|
|
|
|
|
|
- <select id="selectDeptListByRoleId" resultType="Long">
|
|
|
+ <select id="selectDeptListByRoleId" resultType="Long">
|
|
|
select d.dept_id
|
|
|
from sys_dept d
|
|
|
- left join sys_role_dept rd on d.dept_id = rd.dept_id
|
|
|
- where rd.role_id = #{roleId}
|
|
|
- <if test="deptCheckStrictly">
|
|
|
- and d.dept_id not in (select d.parent_id from sys_dept d inner join sys_role_dept rd on d.dept_id = rd.dept_id and rd.role_id = #{roleId})
|
|
|
- </if>
|
|
|
+ left join sys_role_dept rd on d.dept_id = rd.dept_id
|
|
|
+ where rd.role_id = #{roleId}
|
|
|
+ <if test="deptCheckStrictly">
|
|
|
+ and d.dept_id not in (select d.parent_id from sys_dept d inner join sys_role_dept rd on d.dept_id =
|
|
|
+ rd.dept_id and rd.role_id = #{roleId})
|
|
|
+ </if>
|
|
|
order by d.parent_id, d.order_num
|
|
|
</select>
|
|
|
|