|
@@ -18,10 +18,11 @@
|
18
|
18
|
tp_building_owner_info
|
19
|
19
|
<where>
|
20
|
20
|
<if test="ownerName != null and ownerName != ''" >
|
21
|
|
- AND owner_name = #{ownerName,jdbcType=VARCHAR}
|
|
21
|
+ AND owner_name like concat('%',#{ownerName,jdbcType=VARCHAR},'%')
|
|
22
|
+
|
22
|
23
|
</if>
|
23
|
24
|
<if test="ownerTel != null and ownerTel != ''" >
|
24
|
|
- AND owner_tel = #{ownerTel,jdbcType=VARCHAR}
|
|
25
|
+ AND owner_tel like concat('%',#{ownerTel,jdbcType=VARCHAR},'%')
|
25
|
26
|
</if>
|
26
|
27
|
<if test="VerifyStatus == 1 and VerifyStatus != ''" >
|
27
|
28
|
AND verify_status = #{VerifyStatus,jdbcType=VARCHAR}
|