|
@@ -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>
|