|
|
@ -35,10 +35,13 @@ |
|
|
|
and p_id = #{param.pId} |
|
|
|
and p_id = #{param.pId} |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="param.name != null and param.name != ''"> |
|
|
|
<if test="param.name != null and param.name != ''"> |
|
|
|
and `name` like #{param.name} |
|
|
|
and `name` like concat('%',#{param.name},'%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
<if test="param.createDept != null and param.createDept != ''"> |
|
|
|
<if test="param.createDept != null and param.createDept != ''"> |
|
|
|
and create_dept like #{param.createDept} |
|
|
|
and create_dept like concat('%',#{param.createDept},'%') |
|
|
|
|
|
|
|
</if> |
|
|
|
|
|
|
|
<if test="param.examineDeptName != null and param.examineDeptName != ''"> |
|
|
|
|
|
|
|
and examine_dept_name like concat('%',#{param.examineDeptName},'%') |
|
|
|
</if> |
|
|
|
</if> |
|
|
|
</where> |
|
|
|
</where> |
|
|
|
order by create_time desc |
|
|
|
order by create_time desc |
|
|
|