buzhanyi hace 2 años
padre
commit
befa51b4e2

+ 3 - 0
base-system/src/main/resources/mapper/system/SysDeptMapper.xml

@@ -53,6 +53,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
 		<if test="parentId != null and parentId != 0">
 			AND parent_id = #{parentId}
 		</if>
+		<if test="status != null and status != ''">
+			AND status = #{status}
+		</if>
 		<if test="deptName != null and deptName != ''">
 			AND dept_name like concat('%', #{deptName}, '%')
 		</if>