收藏列表查询报错问题修复
This commit is contained in:
@@ -90,13 +90,13 @@
|
||||
and htc.source_type = #{sourceType}
|
||||
</if>
|
||||
<if test="collectTags != null and collectTags != ''">
|
||||
and htc.collect_tags like concat('%',#{collectTags},'%')
|
||||
and htc.collect_tags like '%' || #{collectTags} || '%'
|
||||
</if>
|
||||
<if test="name != null and name != ''">
|
||||
and au.name like concat('%',#{name},'%')
|
||||
and au.name like '%' || #{name} || '%'
|
||||
</if>
|
||||
<if test="phone != null and phone != ''">
|
||||
and au.phone like concat('%',#{phone},'%')
|
||||
and au.phone like '%' || #{phone} || '%'
|
||||
</if>
|
||||
<if test="education != null and education != ''">
|
||||
and au.education = #{education}
|
||||
|
||||
Reference in New Issue
Block a user