111 lines
2.6 KiB
Java
111 lines
2.6 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UserDetailInfo implements Serializable {
|
|
private String countryCode;
|
|
private String countryName;
|
|
private int emailVerify;
|
|
private String nickName;
|
|
private String userBirthday;
|
|
private String userEmail;
|
|
private int userGender;
|
|
private int userId;
|
|
private String userImage;
|
|
private String userName;
|
|
private String userPhone;
|
|
|
|
public String getCountryCode() {
|
|
return this.countryCode;
|
|
}
|
|
|
|
public String getCountryName() {
|
|
return this.countryName;
|
|
}
|
|
|
|
public int getEmailVerify() {
|
|
return this.emailVerify;
|
|
}
|
|
|
|
public String getNickName() {
|
|
return this.nickName;
|
|
}
|
|
|
|
public String getUserBirthday() {
|
|
return this.userBirthday;
|
|
}
|
|
|
|
public String getUserEmail() {
|
|
return this.userEmail;
|
|
}
|
|
|
|
public int getUserGender() {
|
|
return this.userGender;
|
|
}
|
|
|
|
public int getUserId() {
|
|
return this.userId;
|
|
}
|
|
|
|
public String getUserImage() {
|
|
return this.userImage;
|
|
}
|
|
|
|
public String getUserName() {
|
|
return this.userName;
|
|
}
|
|
|
|
public String getUserPhone() {
|
|
return this.userPhone;
|
|
}
|
|
|
|
public void setCountryCode(String str) {
|
|
this.countryCode = str;
|
|
}
|
|
|
|
public void setCountryName(String str) {
|
|
this.countryName = str;
|
|
}
|
|
|
|
public void setEmailVerify(int i) {
|
|
this.emailVerify = i;
|
|
}
|
|
|
|
public void setNickName(String str) {
|
|
this.nickName = str;
|
|
}
|
|
|
|
public void setUserBirthday(String str) {
|
|
this.userBirthday = str;
|
|
}
|
|
|
|
public void setUserEmail(String str) {
|
|
this.userEmail = str;
|
|
}
|
|
|
|
public void setUserGender(int i) {
|
|
this.userGender = i;
|
|
}
|
|
|
|
public void setUserId(int i) {
|
|
this.userId = i;
|
|
}
|
|
|
|
public void setUserImage(String str) {
|
|
this.userImage = str;
|
|
}
|
|
|
|
public void setUserName(String str) {
|
|
this.userName = str;
|
|
}
|
|
|
|
public void setUserPhone(String str) {
|
|
this.userPhone = str;
|
|
}
|
|
|
|
public String toString() {
|
|
return "UserDetailInfo{countryCode='" + this.countryCode + "', countryName='" + this.countryName + "', emailVerify=" + this.emailVerify + ", nickName='" + this.nickName + "', userBirthday='" + this.userBirthday + "', userEmail='" + this.userEmail + "', userGender=" + this.userGender + ", userId=" + this.userId + ", userImage='" + this.userImage + "', userName='" + this.userName + "', userPhone='" + this.userPhone + "'}";
|
|
}
|
|
}
|