|
@@ -202,13 +202,13 @@
|
|
|
1=1
|
|
|
<if test="type!=null and type!=''">
|
|
|
<if test="type==0">
|
|
|
- and a.department = #{condition}
|
|
|
+ and a.department like concat('%',#{condition},'%')
|
|
|
</if>
|
|
|
<if test="type==1">
|
|
|
- and a.underCentralized = #{condition}
|
|
|
+ and a.underCentralized like concat('%',#{condition},'%')
|
|
|
</if>
|
|
|
<if test="type==2">
|
|
|
- and a.second_units = #{condition}
|
|
|
+ and a.second_units like concat('%',#{condition},'%')
|
|
|
</if>
|
|
|
</if>
|
|
|
<if test="status!=null and status !=''">
|