1、修改登录功能并验证,除了支付宝登录其他都已验证
2、完成个人中心的功能,个人主页完成、钱包完成、背包完成
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
package com.qxcm.moduleutil.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class UserHomeResp implements Serializable {
|
||||
|
||||
private String user_id;
|
||||
private String user_code;
|
||||
private String head_picture;
|
||||
private String nickname;
|
||||
private String sex;
|
||||
private String signature;
|
||||
private String birthday;
|
||||
private String constellation;
|
||||
private String profession;
|
||||
private String emchat_username;
|
||||
private String nobility_icon;
|
||||
private String nobility_image;
|
||||
private String rank_icon;
|
||||
private String intro_voice;
|
||||
private String intro_voice_time;
|
||||
private String follow;
|
||||
private String follow_count;
|
||||
private String fans_count;
|
||||
private String age;
|
||||
private String city;
|
||||
private String is_online;
|
||||
private String only_friend;
|
||||
private String good_number;
|
||||
private String id_color;
|
||||
private String vedio;
|
||||
private PhotoWallResp user_photo;
|
||||
private String picture;
|
||||
private String charm_icon;
|
||||
private String charm_exp;
|
||||
private String user_title;
|
||||
|
||||
private String room_id_current;//用户当前所在房间ID
|
||||
private HomeRoomInfo room_info;
|
||||
|
||||
private String room_id_owner;//用户自己的房间id 0表示没有创建房间": 0,
|
||||
private String room_name_owner;//用户自己的房间名称
|
||||
|
||||
private int auth_status; // 1:已实名认证 0:未实名认证
|
||||
private SocietyBean society; // 公会信息
|
||||
}
|
||||
Reference in New Issue
Block a user