package cn.com.basic.face.discern.entity; import java.io.Serializable; import java.util.Date; import cn.com.basic.face.discern.common.BaseEntity; /** * Register */ public class Register extends BaseEntity implements Serializable { private static final long serialVersionUID = 1L; public static final String MODEL_NAME = "Register"; public static final class FieldNames { /** * 人员主键 */ public static final String registerId = "registerId"; /** * 人员名字 */ public static final String username = "username"; /** * 人员名首字母 */ public static final String nameEn = "nameEn"; /** * 性别 */ public static final String genderId = "genderId"; /** * 国籍 */ public static final String countryId = "countryId"; /** * 省 */ public static final String province = "province"; /** * 市 */ public static final String city = "city"; /** * 出生日期 */ public static final String birthday = "birthday"; /** * 座机电话 */ public static final String tel = "tel"; /** * 移动电话 */ public static final String mobilePhone = "mobilePhone"; /** * 证件类型 */ public static final String identityTypeId = "identityTypeId"; /** * 证件编号 */ public static final String identifyNum = "identifyNum"; /** * 公司主键 */ public static final String companyId = "companyId"; /** * 部门主键 */ public static final String departmentId = "departmentId"; /** * 职务主键 */ public static final String postId = "postId"; /** * 人员备注消息 */ public static final String remark = "remark"; /** * 危险人员警告消息 */ public static final String warning = "warning"; /** * 证件照 */ public static final String idCardPhoto = "idCardPhoto"; /** * 上传自定义照片 */ public static final String uploadCustomPhoto = "uploadCustomPhoto"; /** * 监控图片 */ public static final String surveillancePhoto = "surveillancePhoto"; /** * 监控图片id */ public static final String surveillancePhotoId = "surveillancePhotoId"; } // 人员主键 private String registerId; // 人员名字 private String username; // 人员名首字母 private String nameEn; // 性别 private String genderId; // 国籍 private String countryId; // 省 private String province; // 市 private String city; // 出生日期 private String birthday; // 座机电话 private String tel; // 移动电话 private String mobilePhone; // 证件类型 private String identityTypeId; // 证件编号 private String identifyNum; // 公司主键 private String companyId; // 部门主键 private String departmentId; // 职务主键 private String postId; // 人员备注消息 private String remark; // 危险人员警告消息 private String warning; // 证件照 private String idCardPhoto; // 上传自定义照片 private String uploadCustomPhoto; // 监控图片 private String surveillancePhoto; // 监控图片id private String surveillancePhotoId; /** * Get 人员主键 */ public String getRegisterId() { return registerId; } /** * Set 人员主键 */ public void setRegisterId(String registerId) { this.registerId = registerId; } /** * Get 人员名字 */ public String getUsername() { return username; } /** * Set 人员名字 */ public void setUsername(String username) { this.username = username; } /** * Get 人员名首字母 */ public String getNameEn() { return nameEn; } /** * Set 人员名首字母 */ public void setNameEn(String nameEn) { this.nameEn = nameEn; } /** * Get 性别 */ public String getGenderId() { return genderId; } /** * Set 性别 */ public void setGenderId(String genderId) { this.genderId = genderId; } /** * Get 国籍 */ public String getCountryId() { return countryId; } /** * Set 国籍 */ public void setCountryId(String countryId) { this.countryId = countryId; } /** * Get 省 */ public String getProvince() { return province; } /** * Set 省 */ public void setProvince(String province) { this.province = province; } /** * Get 市 */ public String getCity() { return city; } /** * Set 市 */ public void setCity(String city) { this.city = city; } /** * Get 出生日期 */ public String getBirthday() { return birthday; } /** * Set 出生日期 */ public void setBirthday(String birthday) { this.birthday = birthday; } /** * Get 座机电话 */ public String getTel() { return tel; } /** * Set 座机电话 */ public void setTel(String tel) { this.tel = tel; } /** * Get 移动电话 */ public String getMobilePhone() { return mobilePhone; } /** * Set 移动电话 */ public void setMobilePhone(String mobilePhone) { this.mobilePhone = mobilePhone; } /** * Get 证件类型 */ public String getIdentityTypeId() { return identityTypeId; } /** * Set 证件类型 */ public void setIdentityTypeId(String identityTypeId) { this.identityTypeId = identityTypeId; } /** * Get 证件编号 */ public String getIdentifyNum() { return identifyNum; } /** * Set 证件编号 */ public void setIdentifyNum(String identifyNum) { this.identifyNum = identifyNum; } /** * Get 公司主键 */ public String getCompanyId() { return companyId; } /** * Set 公司主键 */ public void setCompanyId(String companyId) { this.companyId = companyId; } /** * Get 部门主键 */ public String getDepartmentId() { return departmentId; } /** * Set 部门主键 */ public void setDepartmentId(String departmentId) { this.departmentId = departmentId; } /** * Get 职务主键 */ public String getPostId() { return postId; } /** * Set 职务主键 */ public void setPostId(String postId) { this.postId = postId; } /** * Get 人员备注消息 */ public String getRemark() { return remark; } /** * Set 人员备注消息 */ public void setRemark(String remark) { this.remark = remark; } /** * Get 危险人员警告消息 */ public String getWarning() { return warning; } /** * Set 危险人员警告消息 */ public void setWarning(String warning) { this.warning = warning; } /** * Get 证件照 */ public String getIdCardPhoto() { return idCardPhoto; } /** * Set 证件照 */ public void setIdCardPhoto(String idCardPhoto) { this.idCardPhoto = idCardPhoto; } /** * Get 上传自定义照片 */ public String getUploadCustomPhoto() { return uploadCustomPhoto; } /** * Set 上传自定义照片 */ public void setUploadCustomPhoto(String uploadCustomPhoto) { this.uploadCustomPhoto = uploadCustomPhoto; } /** * Get 监控图片 */ public String getSurveillancePhoto() { return surveillancePhoto; } /** * Set 监控图片 */ public void setSurveillancePhoto(String surveillancePhoto) { this.surveillancePhoto = surveillancePhoto; } /** * Get 监控图片id */ public String getSurveillancePhotoId() { return surveillancePhotoId; } /** * Set 监控图片id */ public void setSurveillancePhotoId(String surveillancePhotoId) { this.surveillancePhotoId = surveillancePhotoId; } public String toString() { return ",人员主键 =" + registerId + ",人员名字 =" + username + ",人员名首字母 ="+ nameEn + ",性别 =" + genderId + ",国籍 =" + countryId + ",省 =" + province + ",市 =" + city + ",出生日期 =" + birthday + ",座机电话 =" + tel + ",移动电话 =" + mobilePhone + ",证件类型 =" + identityTypeId + ",证件编号 =" + identifyNum + ",公司主键 =" + companyId + ",部门主键 =" + departmentId + ",职务主键 =" + postId + ",人员备注消息 ="+ remark + ",危险人员警告消息 ="+ warning + ",证件照 =" + idCardPhoto + ",上传自定义照片 ="+ uploadCustomPhoto + ",监控图片 =" + surveillancePhoto + ",监控图片id ="+ surveillancePhotoId ; } }