收藏列表查询问题修复
This commit is contained in:
@@ -92,6 +92,21 @@
|
|||||||
<if test="collectTags != null and collectTags != ''">
|
<if test="collectTags != null and collectTags != ''">
|
||||||
and htc.collect_tags like concat('%',#{collectTags},'%')
|
and htc.collect_tags like concat('%',#{collectTags},'%')
|
||||||
</if>
|
</if>
|
||||||
|
<if test="name != null and name != ''">
|
||||||
|
and au.name like concat('%',#{name},'%')
|
||||||
|
</if>
|
||||||
|
<if test="phone != null and phone != ''">
|
||||||
|
and au.phone like concat('%',#{phone},'%')
|
||||||
|
</if>
|
||||||
|
<if test="education != null and education != ''">
|
||||||
|
and au.education = #{education}
|
||||||
|
</if>
|
||||||
|
<if test="area != null and area != ''">
|
||||||
|
and au.area = #{area}
|
||||||
|
</if>
|
||||||
|
<if test="sex != null and sex != ''">
|
||||||
|
and au.sex = #{sex}
|
||||||
|
</if>
|
||||||
</where>
|
</where>
|
||||||
order by htc.create_time desc
|
order by htc.create_time desc
|
||||||
</select>
|
</select>
|
||||||
|
|||||||
Reference in New Issue
Block a user