提交项目
This commit is contained in:
67
app/src/main/java/com/gh/gamecenter/entity/UserEntity.java
Normal file
67
app/src/main/java/com/gh/gamecenter/entity/UserEntity.java
Normal file
@ -0,0 +1,67 @@
|
||||
package com.gh.gamecenter.entity;
|
||||
|
||||
public class UserEntity {
|
||||
|
||||
private String account;
|
||||
private String name;
|
||||
private String icon;
|
||||
private String sign;
|
||||
private String mobileNumber;
|
||||
private boolean isActivation;
|
||||
|
||||
public String getAccount() {
|
||||
return account;
|
||||
}
|
||||
|
||||
public void setAccount(String account) {
|
||||
this.account = account;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getIcon() {
|
||||
return icon;
|
||||
}
|
||||
|
||||
public void setIcon(String icon) {
|
||||
this.icon = icon;
|
||||
}
|
||||
|
||||
public String getSign() {
|
||||
return sign;
|
||||
}
|
||||
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
public String getMobileNumber() {
|
||||
return mobileNumber;
|
||||
}
|
||||
|
||||
public void setMobileNumber(String mobileNumber) {
|
||||
this.mobileNumber = mobileNumber;
|
||||
}
|
||||
|
||||
public boolean isActivation() {
|
||||
return isActivation;
|
||||
}
|
||||
|
||||
public void setActivation(boolean isActivation) {
|
||||
this.isActivation = isActivation;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "UserEntity [account=" + account + ", name=" + name + ", icon="
|
||||
+ icon + ", sign=" + sign + ", mobileNumber=" + mobileNumber
|
||||
+ ", isActivation=" + isActivation + "]";
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user