package com.moral.monitor.entity;
|
|
import java.util.Date;
|
|
public class AccountEntity {
|
private Integer id;
|
|
private String account;
|
|
private String password;
|
|
private String name;
|
|
private String sex;
|
|
private String organization;
|
|
private String email;
|
|
private String mobile;
|
|
private String weixin;
|
|
private Date time;
|
|
private String enable;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getAccount() {
|
return account;
|
}
|
|
public void setAccount(String account) {
|
this.account = account;
|
}
|
|
public String getPassword() {
|
return password;
|
}
|
|
public void setPassword(String password) {
|
this.password = password;
|
}
|
|
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 getOrganization() {
|
return organization;
|
}
|
|
public void setOrganization(String organization) {
|
this.organization = organization;
|
}
|
|
public String getEmail() {
|
return email;
|
}
|
|
public void setEmail(String email) {
|
this.email = email;
|
}
|
|
public String getMobile() {
|
return mobile;
|
}
|
|
public void setMobile(String mobile) {
|
this.mobile = mobile;
|
}
|
|
public String getWeixin() {
|
return weixin;
|
}
|
|
public void setWeixin(String weixin) {
|
this.weixin = weixin;
|
}
|
|
public Date getTime() {
|
return time;
|
}
|
|
public void setTime(Date time) {
|
this.time = time;
|
}
|
|
public String getEnable() {
|
return enable;
|
}
|
|
public void setEnable(String enable) {
|
this.enable = enable;
|
}
|
}
|