修改交友布局
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.xscm.moduleutil.bean;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UserBean implements Serializable {
|
||||
@SerializedName(value = "id", alternate = "user_id")
|
||||
private int user_id;
|
||||
private int user_code;
|
||||
private String avatar;
|
||||
private String nickname;
|
||||
private String token;
|
||||
private String tencent_im;
|
||||
private String mobile;
|
||||
private int sex;
|
||||
private int auth;
|
||||
|
||||
private List<MultiUserBean> multi_user;
|
||||
|
||||
@Data
|
||||
private static class MultiUserBean{
|
||||
private String id;
|
||||
private String user_code;
|
||||
private String avatar;
|
||||
private String nickname;
|
||||
private String sex;
|
||||
private String mobile;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user