This commit is contained in:
张良(004796)
2024-01-31 23:11:04 +08:00
parent 2990819c26
commit 3c6f645b34
3 changed files with 32 additions and 0 deletions

View File

@@ -60,6 +60,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.justAnchor != null and query.justAnchor == 1">
and t1.is_anchor = 1
</if>
<if test="query.gender != null">
and t1.gender = #{query.gender}
</if>
<if test="query.noAuth != null and query.noAuth == 1">
and 1=2
</if>
order by t2.last_live_time desc
</select>
<select id="getGreetNumId" resultType="java.lang.Long">