This commit is contained in:
77
2024-04-17 23:28:20 +08:00
parent afa34b6c0c
commit 4fec751dd7
3 changed files with 14 additions and 0 deletions

View File

@@ -51,9 +51,15 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="query.cityId != null and query.cityId != ''">
and t1.city_id = #{query.cityId}
</if>
<if test="query.cityId != null and query.cityId != ''">
and t1.city_id = #{query.cityId}
</if>
<if test="query.onlineStatus != null">
and t3.status = #{query.onlineStatus}
</if>
<if test="query.openVideoStatus != null">
and t2.open_video_status = #{query.openVideoStatus}
</if>
<if test="query.type != null">
<if test="query.type == 0">
order by t2.recommend_status desc,t2.update_time desc