|
@@ -30,6 +30,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<select id="selectDeptList" parameterType="SysDept" resultMap="SysDeptResult">
|
|
|
<include refid="selectDeptVo"/>
|
|
|
where d.del_flag = '1'
|
|
|
+ and d.status='1'
|
|
|
<if test="deptId != null and deptId != 0">
|
|
|
AND dept_id = #{deptId}
|
|
|
</if>
|
|
@@ -39,9 +40,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="deptName != null and deptName != ''">
|
|
|
AND dept_name like concat('%', #{deptName}, '%')
|
|
|
</if>
|
|
|
- <if test="status != null and status != ''">
|
|
|
- AND status = #{status}
|
|
|
- </if>
|
|
|
order by d.parent_id, d.order_num
|
|
|
</select>
|
|
|
|