package cn.com.basic.face.discern.query.item; public class CheckInQueryItem { // 人员主键 private String registerId; // 人员名字 private String username; // 监控图片 private String surveillancePhoto; // 公司名称 private String companyName; // 座机电话 private String tel; // 证件编号 private String identifyNum; // 部门名称 private String deptName; // 公司主键 private String companyId; // 职位名称 private String postName; // 移动电话 private String mobilePhone; // 危险人员警告消息 private String warning; /** * 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 getSurveillancePhoto() { return surveillancePhoto; } /** * Set 监控图片 */ public void setSurveillancePhoto(String surveillancePhoto) { this.surveillancePhoto = surveillancePhoto; } /** * Get 公司名称 */ public String getCompanyName() { return companyName; } /** * Set 公司名称 */ public void setCompanyName(String companyName) { this.companyName = companyName; } /** * Get 座机电话 */ public String getTel() { return tel; } /** * Set 座机电话 */ public void setTel(String tel) { this.tel = tel; } /** * Get 证件编号 */ public String getIdentifyNum() { return identifyNum; } /** * Set 证件编号 */ public void setIdentifyNum(String identifyNum) { this.identifyNum = identifyNum; } /** * Get 部门名称 */ public String getDeptName() { return deptName; } /** * Set 部门名称 */ public void setDeptName(String deptName) { this.deptName = deptName; } /** * Get 公司主键 */ public String getCompanyId() { return companyId; } /** * Set 公司主键 */ public void setCompanyId(String companyId) { this.companyId = companyId; } /** * Get 职位名称 */ public String getPostName() { return postName; } /** * Set 职位名称 */ public void setPostName(String postName) { this.postName = postName; } /** * Get 移动电话 */ public String getMobilePhone() { return mobilePhone; } /** * Set 移动电话 */ public void setMobilePhone(String mobilePhone) { this.mobilePhone = mobilePhone; } public String getWarning() { return warning; } public void setWarning(String warning) { this.warning = warning; } public String toString() { return ",人员主键 =" + registerId + ",人员名字 =" + username + ",监控图片 =" + surveillancePhoto + ",公司名称 =" + companyName + ",座机电话 =" + tel + ",证件编号 =" + identifyNum + ",部门名称 =" + deptName + ",公司主键 =" + companyId + ",职位名称 =" + postName + ",移动电话 =" + mobilePhone; } }