package cn.com.basic.face.discern.baseApi.entity.sys;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class User implements Serializable {
|
/**
|
* 用户ID
|
*/
|
private String userid;
|
|
/**
|
* 用户名
|
*/
|
private String username;
|
|
/**
|
* 名字首字母
|
*/
|
private String namespell;
|
|
/**
|
* 性别
|
*/
|
private Byte sex;
|
|
/**
|
* 国籍
|
*/
|
private String state;
|
|
/**
|
* 出生日期
|
*/
|
private Date birthday;
|
|
/**
|
* 注册时间
|
*/
|
private Date registertime;
|
|
/**
|
* 注册公司ID
|
*/
|
private String registercompanyid;
|
|
/**
|
* 注册位置ID
|
*/
|
private String registerpositionid;
|
|
/**
|
* 省
|
*/
|
private String provice;
|
|
/**
|
* 市
|
*/
|
private String city;
|
|
/**
|
* 县
|
*/
|
private String county;
|
|
/**
|
* 镇
|
*/
|
private String town;
|
|
/**
|
* 村
|
*/
|
private String village;
|
|
/**
|
* 数据状态:1有效,0无效
|
*/
|
private Byte datastatus;
|
|
/**
|
* 创建该记录时间
|
*/
|
private Date createtime;
|
|
/**
|
* 数据创建人
|
*/
|
private String creator;
|
|
/**
|
* 更新时间
|
*/
|
private Date updatetime;
|
|
/**
|
* 数据更新人
|
*/
|
private String updator;
|
|
private static final long serialVersionUID = 1L;
|
|
public String getUserid() {
|
return userid;
|
}
|
|
public void setUserid(String userid) {
|
this.userid = userid == null ? null : userid.trim();
|
}
|
|
public String getUsername() {
|
return username;
|
}
|
|
public void setUsername(String username) {
|
this.username = username == null ? null : username.trim();
|
}
|
|
public String getNamespell() {
|
return namespell;
|
}
|
|
public void setNamespell(String namespell) {
|
this.namespell = namespell == null ? null : namespell.trim();
|
}
|
|
public Byte getSex() {
|
return sex;
|
}
|
|
public void setSex(Byte sex) {
|
this.sex = sex;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state == null ? null : state.trim();
|
}
|
|
public Date getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(Date birthday) {
|
this.birthday = birthday;
|
}
|
|
public Date getRegistertime() {
|
return registertime;
|
}
|
|
public void setRegistertime(Date registertime) {
|
this.registertime = registertime;
|
}
|
|
public String getRegistercompanyid() {
|
return registercompanyid;
|
}
|
|
public void setRegistercompanyid(String registercompanyid) {
|
this.registercompanyid = registercompanyid == null ? null : registercompanyid.trim();
|
}
|
|
public String getRegisterpositionid() {
|
return registerpositionid;
|
}
|
|
public void setRegisterpositionid(String registerpositionid) {
|
this.registerpositionid = registerpositionid == null ? null : registerpositionid.trim();
|
}
|
|
public String getProvice() {
|
return provice;
|
}
|
|
public void setProvice(String provice) {
|
this.provice = provice == null ? null : provice.trim();
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city == null ? null : city.trim();
|
}
|
|
public String getCounty() {
|
return county;
|
}
|
|
public void setCounty(String county) {
|
this.county = county == null ? null : county.trim();
|
}
|
|
public String getTown() {
|
return town;
|
}
|
|
public void setTown(String town) {
|
this.town = town == null ? null : town.trim();
|
}
|
|
public String getVillage() {
|
return village;
|
}
|
|
public void setVillage(String village) {
|
this.village = village == null ? null : village.trim();
|
}
|
|
public Byte getDatastatus() {
|
return datastatus;
|
}
|
|
public void setDatastatus(Byte datastatus) {
|
this.datastatus = datastatus;
|
}
|
|
public Date getCreatetime() {
|
return createtime;
|
}
|
|
public void setCreatetime(Date createtime) {
|
this.createtime = createtime;
|
}
|
|
public String getCreator() {
|
return creator;
|
}
|
|
public void setCreator(String creator) {
|
this.creator = creator == null ? null : creator.trim();
|
}
|
|
public Date getUpdatetime() {
|
return updatetime;
|
}
|
|
public void setUpdatetime(Date updatetime) {
|
this.updatetime = updatetime;
|
}
|
|
public String getUpdator() {
|
return updator;
|
}
|
|
public void setUpdator(String updator) {
|
this.updator = updator == null ? null : updator.trim();
|
}
|
|
@Override
|
public String toString() {
|
StringBuilder sb = new StringBuilder();
|
sb.append(getClass().getSimpleName());
|
sb.append(" [");
|
sb.append("Hash = ").append(hashCode());
|
sb.append(", userid=").append(userid);
|
sb.append(", username=").append(username);
|
sb.append(", namespell=").append(namespell);
|
sb.append(", sex=").append(sex);
|
sb.append(", state=").append(state);
|
sb.append(", birthday=").append(birthday);
|
sb.append(", registertime=").append(registertime);
|
sb.append(", registercompanyid=").append(registercompanyid);
|
sb.append(", registerpositionid=").append(registerpositionid);
|
sb.append(", provice=").append(provice);
|
sb.append(", city=").append(city);
|
sb.append(", county=").append(county);
|
sb.append(", town=").append(town);
|
sb.append(", village=").append(village);
|
sb.append(", datastatus=").append(datastatus);
|
sb.append(", createtime=").append(createtime);
|
sb.append(", creator=").append(creator);
|
sb.append(", updatetime=").append(updatetime);
|
sb.append(", updator=").append(updator);
|
sb.append(", serialVersionUID=").append(serialVersionUID);
|
sb.append("]");
|
return sb.toString();
|
}
|
}
|