package cn.com.basic.face.discern.user.entity;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class Person implements Serializable{
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private Integer id;
|
|
private String name;
|
|
private String namespell;
|
|
private Boolean gender;
|
|
private String country;
|
|
private String province;
|
|
private String city;
|
|
private Date birthday;
|
|
private String phone;
|
|
private String mobilephone;
|
|
private String identitytype;
|
|
private String identify;
|
|
private Integer companyid;
|
|
private Integer departmentid;
|
|
private Integer postid;
|
|
private String remark;
|
|
private String warning;
|
|
public Integer getId() {
|
return id;
|
}
|
|
public void setId(Integer id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name == null ? null : name.trim();
|
}
|
|
public String getNamespell() {
|
return namespell;
|
}
|
|
public void setNamespell(String namespell) {
|
this.namespell = namespell == null ? null : namespell.trim();
|
}
|
|
public Boolean getGender() {
|
return gender;
|
}
|
|
public void setGender(Boolean gender) {
|
this.gender = gender;
|
}
|
|
public String getCountry() {
|
return country;
|
}
|
|
public void setCountry(String country) {
|
this.country = country == null ? null : country.trim();
|
}
|
|
public String getProvince() {
|
return province;
|
}
|
|
public void setProvince(String province) {
|
this.province = province == null ? null : province.trim();
|
}
|
|
public String getCity() {
|
return city;
|
}
|
|
public void setCity(String city) {
|
this.city = city == null ? null : city.trim();
|
}
|
|
public Date getBirthday() {
|
return birthday;
|
}
|
|
public void setBirthday(Date birthday) {
|
this.birthday = birthday;
|
}
|
|
public String getPhone() {
|
return phone;
|
}
|
|
public void setPhone(String phone) {
|
this.phone = phone == null ? null : phone.trim();
|
}
|
|
public String getMobilephone() {
|
return mobilephone;
|
}
|
|
public void setMobilephone(String mobilephone) {
|
this.mobilephone = mobilephone == null ? null : mobilephone.trim();
|
}
|
|
public String getIdentitytype() {
|
return identitytype;
|
}
|
|
public void setIdentitytype(String identitytype) {
|
this.identitytype = identitytype == null ? null : identitytype.trim();
|
}
|
|
public String getIdentify() {
|
return identify;
|
}
|
|
public void setIdentify(String identify) {
|
this.identify = identify == null ? null : identify.trim();
|
}
|
|
public Integer getCompanyid() {
|
return companyid;
|
}
|
|
public void setCompanyid(Integer companyid) {
|
this.companyid = companyid;
|
}
|
|
public Integer getDepartmentid() {
|
return departmentid;
|
}
|
|
public void setDepartmentid(Integer departmentid) {
|
this.departmentid = departmentid;
|
}
|
|
public Integer getPostid() {
|
return postid;
|
}
|
|
public void setPostid(Integer postid) {
|
this.postid = postid;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark == null ? null : remark.trim();
|
}
|
|
public String getWarning() {
|
return warning;
|
}
|
|
public void setWarning(String warning) {
|
this.warning = warning == null ? null : warning.trim();
|
}
|
}
|