This commit is contained in:
dute7liang
2023-12-23 22:34:25 +08:00
parent e29a4edf7c
commit 59d048e1a6
30 changed files with 705 additions and 28 deletions

View File

@@ -29,6 +29,24 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
from cai_anchor t1
left join cai_user t2 on t1.user_id = t2.id
</select>
<select id="pageApp" resultType="com.ruoyi.cai.dto.app.vo.AnchorListVo">
select t1.avatar,t1.gender,t1.city,t1.nickname,t1.usercode,t2.give_score
from cai_user t1
join cai_anchor t2 on t1.id = t2.user_id
join cai_user_online t3 on t1.id = t3.user_id
where t1.status = 0 and t1.is_anchor = 1
<if test="query.city != null and query.city != ''">
and t1.city = #{query.city}
</if>
<if test="query.type != null">
<if test="query.type == 1">
order by t3.last_live_time desc
</if>
<if test="query.type == 1">
order by t1.create_time desc
</if>
</if>
</select>
</mapper>