用户管理页面开发

This commit is contained in:
暮光:城中城
2019-06-28 23:23:51 +08:00
parent 9d6ab9e159
commit 49c1929746
8 changed files with 219 additions and 86 deletions

View File

@@ -69,6 +69,16 @@ public class UserInfo implements Serializable {
*/
private Date updateTime;
/**
* 手机号
*/
private String phone;
/**
* 性别 0=女 1=男
*/
private Integer sex;
public Long getId() {
return id;
}
@@ -155,4 +165,20 @@ public class UserInfo implements Serializable {
", updateTime=" + updateTime +
"}";
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public Integer getSex() {
return sex;
}
public void setSex(Integer sex) {
this.sex = sex;
}
}