package cn.com.basic.face.discern.entity;
|
|
import java.io.Serializable;
|
|
import cn.com.basic.face.discern.common.BaseEntity;
|
|
/**
|
* 人员表
|
*/
|
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";
|
/**
|
* 访客类型
|
*/
|
public static final String visitorTypeId = "visitorTypeId";
|
/**
|
* 身份认证
|
*/
|
public static final String authentication = "authentication";
|
/**
|
* idCardHeadPhoto
|
*/
|
public static final String idCardHeadPhoto = "idCardHeadPhoto";
|
/**
|
* 考勤人员类型
|
*/
|
public static final String attenderTypeId = "attenderTypeId";
|
/**
|
* 卡号
|
*/
|
public static final String cardNumber = "cardNumber";
|
/**
|
* 同步时间
|
*/
|
public static final String updateTime = "updateTime";
|
/**
|
* 是否同步
|
*/
|
public static final String isSynchron = "isSynchron";
|
/**
|
* 设备所在机构id
|
*/
|
public static final String deviceCompanyId = "deviceCompanyId";
|
/**
|
* 临时原监控文件路径
|
*/
|
public static final String rawSurveillancePhotoPath = "rawSurveillancePhotoPath";
|
/**
|
* 临时原监控文件宽度
|
*/
|
public static final String rawSurveillancePhotoWidth = "rawSurveillancePhotoWidth";
|
/**
|
* 临时原监控文件高度
|
*/
|
public static final String rawSurveillancePhotoHeight = "rawSurveillancePhotoHeight";
|
/**
|
* 临时原监控文件创建时间
|
*/
|
public static final String post = "createTime";
|
public static final String department = "createTime";
|
public static final String company = "company";
|
}
|
|
// 人员主键
|
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;
|
// 访客类型
|
private String visitorTypeId;
|
// 身份认证
|
private String authentication;
|
// idCardHeadPhoto
|
private String idCardHeadPhoto;
|
// 考勤人员类型
|
private String attenderTypeId;
|
// 卡号
|
private String cardNumber;
|
// 同步时间
|
private String updateTime;
|
// 是否同步
|
private String isSynchron;
|
// 设备所在机构id
|
private String deviceCompanyId;
|
// 临时原监控文件路径
|
private String rawSurveillancePhotoPath;
|
// 临时原监控文件宽度
|
private String rawSurveillancePhotoWidth;
|
// 临时原监控文件高度
|
private String rawSurveillancePhotoHeight;
|
// 临时原监控文件创建时间
|
private String createTime;
|
private String company;
|
private String visitorOrAttender;
|
|
|
private String isValid;
|
|
|
public String getIsValid() {
|
return isValid;
|
}
|
|
public void setIsValid(String isValid) {
|
this.isValid = isValid;
|
}
|
|
|
|
|
/**
|
* 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;
|
}
|
|
/**
|
* Get 访客类型
|
*/
|
public String getVisitorTypeId() {
|
return visitorTypeId;
|
}
|
|
/**
|
* Set 访客类型
|
*/
|
public void setVisitorTypeId(String visitorTypeId) {
|
this.visitorTypeId = visitorTypeId;
|
}
|
|
/**
|
* Get 身份认证
|
* :0未认证,1已认证
|
*/
|
public String getAuthentication() {
|
return authentication;
|
}
|
|
/**
|
* Set 身份认证
|
* :0未认证,1已认证
|
*/
|
public void setAuthentication(String authentication) {
|
this.authentication = authentication;
|
}
|
|
/**
|
* Get idCardHeadPhoto
|
*/
|
public String getIdCardHeadPhoto() {
|
return idCardHeadPhoto;
|
}
|
|
/**
|
* Set idCardHeadPhoto
|
*/
|
public void setIdCardHeadPhoto(String idCardHeadPhoto) {
|
this.idCardHeadPhoto = idCardHeadPhoto;
|
}
|
|
/**
|
* Get 考勤人员类型
|
*/
|
public String getAttenderTypeId() {
|
return attenderTypeId;
|
}
|
|
/**
|
* Set 考勤人员类型
|
*/
|
public void setAttenderTypeId(String attenderTypeId) {
|
this.attenderTypeId = attenderTypeId;
|
}
|
|
/**
|
* Get 卡号
|
*/
|
public String getCardNumber() {
|
return cardNumber;
|
}
|
|
/**
|
* Set 卡号
|
*/
|
public void setCardNumber(String cardNumber) {
|
this.cardNumber = cardNumber;
|
}
|
|
/**
|
* Get 同步时间
|
*/
|
public String getUpdateTime() {
|
return updateTime;
|
}
|
|
/**
|
* Set 同步时间
|
*/
|
public void setUpdateTime(String updateTime) {
|
this.updateTime = updateTime;
|
}
|
|
/**
|
* Get 是否同步
|
* ,Y--已同步,N--未同步
|
*/
|
public String getIsSynchron() {
|
return isSynchron;
|
}
|
|
/**
|
* Set 是否同步
|
* ,Y--已同步,N--未同步
|
*/
|
public void setIsSynchron(String isSynchron) {
|
this.isSynchron = isSynchron;
|
}
|
|
/**
|
* Get 设备所在机构id
|
*/
|
public String getDeviceCompanyId() {
|
return deviceCompanyId;
|
}
|
|
/**
|
* Set 设备所在机构id
|
*/
|
public void setDeviceCompanyId(String deviceCompanyId) {
|
this.deviceCompanyId = deviceCompanyId;
|
}
|
|
/**
|
* Get 临时原监控文件路径
|
*/
|
public String getRawSurveillancePhotoPath() {
|
return rawSurveillancePhotoPath;
|
}
|
|
/**
|
* Set 临时原监控文件路径
|
*/
|
public void setRawSurveillancePhotoPath(String rawSurveillancePhotoPath) {
|
this.rawSurveillancePhotoPath = rawSurveillancePhotoPath;
|
}
|
|
/**
|
* Get 临时原监控文件宽度
|
*/
|
public String getRawSurveillancePhotoWidth() {
|
return rawSurveillancePhotoWidth;
|
}
|
|
/**
|
* Set 临时原监控文件宽度
|
*/
|
public void setRawSurveillancePhotoWidth(String rawSurveillancePhotoWidth) {
|
this.rawSurveillancePhotoWidth = rawSurveillancePhotoWidth;
|
}
|
|
/**
|
* Get 临时原监控文件高度
|
*/
|
public String getRawSurveillancePhotoHeight() {
|
return rawSurveillancePhotoHeight;
|
}
|
|
/**
|
* Set 临时原监控文件高度
|
*/
|
public void setRawSurveillancePhotoHeight(String rawSurveillancePhotoHeight) {
|
this.rawSurveillancePhotoHeight = rawSurveillancePhotoHeight;
|
}
|
|
/**
|
* Get 临时原监控文件创建时间
|
*/
|
public String getCreateTime() {
|
return createTime;
|
}
|
|
/**
|
* Set 临时原监控文件创建时间
|
*/
|
public void setCreateTime(String createTime) {
|
this.createTime = createTime;
|
}
|
|
public String getCompany() {
|
return company;
|
}
|
|
public void setCompany(String company) {
|
this.company = company;
|
}
|
|
public String getVisitorOrAttender() {
|
return visitorOrAttender;
|
}
|
|
public void setVisitorOrAttender(String visitorOrAttender) {
|
this.visitorOrAttender = visitorOrAttender;
|
}
|
|
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 +
|
",访客类型 =" + visitorTypeId + ",身份认证 =" + authentication + ",idCardHeadPhoto ="+ idCardHeadPhoto +
|
",考勤人员类型 ="+ attenderTypeId + ",卡号 =" + cardNumber + ",同步时间 =" + updateTime +
|
",是否同步 =" + isSynchron + ",设备所在机构id ="+ deviceCompanyId + ",临时原监控文件路径 ="+ rawSurveillancePhotoPath +
|
",临时原监控文件宽度 ="+ rawSurveillancePhotoWidth + ",临时原监控文件高度 ="+ rawSurveillancePhotoHeight + ",临时原监控文件创建时间 ="+ createTime
|
;
|
}
|
}
|