package com.moral.monitor.entity;
|
|
|
import java.util.Date;
|
|
/**用户表
|
* Created by a on 2017/4/10.
|
*/
|
public class User {
|
private int id;
|
private String name;
|
private String sex;
|
private String mobile;
|
private String email;
|
private String weixin;
|
private String password;
|
private String organization;
|
private String user_type;
|
private Date create_time;
|
private String nickname;
|
private String code;
|
|
private String[] selected;
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public String getSex() {
|
return sex;
|
}
|
|
public void setSex(String sex) {
|
this.sex = sex;
|
}
|
|
public String getMobile() {
|
return mobile;
|
}
|
|
public void setMobile(String mobile) {
|
this.mobile = mobile;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getWeixin() {
|
return weixin;
|
}
|
|
public void setWeixin(String weixin) {
|
this.weixin = weixin;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
public String getOrganization() {
|
return organization;
|
}
|
|
public void setOrganization(String organization) {
|
this.organization = organization;
|
}
|
|
public String getUser_type() {
|
return user_type;
|
}
|
|
public void setUser_type(String user_type) {
|
this.user_type = user_type;
|
}
|
|
public Date getCreate_time() {
|
return create_time;
|
}
|
|
public void setCreate_time(Date create_time) {
|
this.create_time = create_time;
|
}
|
|
public String getNickname() {
|
return nickname;
|
}
|
|
public void setNickname(String nickname) {
|
this.nickname = nickname;
|
}
|
|
public String getCode() {
|
return code;
|
}
|
|
public void setCode(String code) {
|
this.code = code;
|
}
|
|
public String[] getSelected() {
|
return selected;
|
}
|
|
public void setSelected(String[] selected) {
|
this.selected = selected;
|
}
|
}
|