init
This commit is contained in:
@@ -22,11 +22,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
</select>
|
||||
<select id="homePageApp" resultType="com.ruoyi.xq.dto.app.user.vo.HomeUserListVo">
|
||||
select t1.id as user_id, t1.avatar, t1.gender, t1.nickname, t1.birthday, t1.residence_city_name,
|
||||
t1.education, t1.profession, if(t2.card_num_auth = 1, 1, 0) as cardNumAuthBool
|
||||
t1.education, t1.profession, if(t2.card_num_auth = 1, 1, 0) as cardNumAuthBool,t4.show_avatar
|
||||
from xq_user t1
|
||||
join xq_user_auth t2 on t1.id = t2.user_id
|
||||
join xq_user_info t3 on t1.id = t3.user_id
|
||||
where t1.type = 0 and t1.status = 0 and t1.finish_base_status = 1
|
||||
join xq_user_status t4 on t1.id = t4.user_id
|
||||
where t1.type = 0 and t1.status = 0 and t1.finish_base_status = 1 and t4.personals_status = 1
|
||||
<if test="params.birthdayBegin != null">
|
||||
and t1.birthday >= #{params.birthdayBegin}
|
||||
</if>
|
||||
|
||||
Reference in New Issue
Block a user