|
|
@ -49,6 +49,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
<if test="deptName != null and deptName != ''">
|
|
|
|
<if test="deptName != null and deptName != ''">
|
|
|
|
AND dept_name like concat('%', #{deptName}, '%')
|
|
|
|
AND dept_name like concat('%', #{deptName}, '%')
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="framework != null and framework != ''">
|
|
|
|
|
|
|
|
AND framework = #{framework}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
|
|
|
|
<if test="area != null and area != ''">
|
|
|
|
|
|
|
|
AND area = #{area}
|
|
|
|
|
|
|
|
</if>
|
|
|
|
<if test="status != null and status != ''">
|
|
|
|
<if test="status != null and status != ''">
|
|
|
|
AND status = #{status}
|
|
|
|
AND status = #{status}
|
|
|
|
</if>
|
|
|
|
</if>
|
|
|
|