收藏列表查询问题修复

This commit is contained in:
francis-fh
2026-07-16 19:03:37 +08:00
parent a5946214a0
commit 69f8e8d340

View File

@@ -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>