|
@@ -28,7 +28,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
and del_flag = 0
|
|
|
<if test="deptName != null and deptName != ''"> and dept_name like concat('%', #{deptName}, '%')</if>
|
|
|
<if test="yesOrNoShow != null and yesOrNoShow != ''"> and yes_or_no_show = #{yesOrNoShow}</if>
|
|
|
- <if test="objectOfHandling != null and objectOfHandling != ''"> and object_of_handling = #{objectOfHandling}</if>
|
|
|
+ <if test="objectOfHandling != null and objectOfHandling != ''"> and object_of_handling like concat('%',#{objectOfHandling},'%')</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|