xuxiuxi
2017-05-11 109ffe9a777658936a38d0c146579a67c60a0d17
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java
@@ -1,5 +1,7 @@
package cn.com.basic.face.discern.query.item;
import java.util.Date;
public class VisitQueryItem {
@@ -7,8 +9,8 @@
   private String registerId;
   // 人员名字
   private String username;
   // 图片地址
   private String imagePath;
   // 监控图片
   private String surveillancePhoto;
   // 公司名称
   private String companyName;
   // 座机电话
@@ -25,6 +27,26 @@
   private String mobilePhone;
   // 
   private String type;
   //
   private String gender;
   //
   private String identityType;
   //
   private String birthday;
   //
   private String countryName;
   //
   private String visitee;
   //
   private String visitReason;
   //
   private String enterTime;
   //
   private String exitTime;
   //
   private String currentStatus;
   //
   private String idCardPhoto;
   /**
    * Get 人员主键
@@ -55,17 +77,17 @@
   }
   /**
    * Get 图片地址
    * Get 监控图片
    */
   public String getImagePath() {
      return imagePath;
   public String getSurveillancePhoto() {
      return surveillancePhoto;
   }
   
   /**
    * Set 图片地址
    * Set 监控图片
    */
   public void setImagePath(String imagePath) {
      this.imagePath = imagePath;
   public void setSurveillancePhoto(String surveillancePhoto) {
      this.surveillancePhoto = surveillancePhoto;
   }
   /**
@@ -180,11 +202,155 @@
      this.type = type;
   }
   /**
    * Get
    */
   public String getGender() {
      return gender;
   }
   /**
    * Set
    */
   public void setGender(String gender) {
      this.gender = gender;
   }
   /**
    * Get
    */
   public String getIdentityType() {
      return identityType;
   }
   /**
    * Set
    */
   public void setIdentityType(String identityType) {
      this.identityType = identityType;
   }
   /**
    * Get
    */
   public String getBirthday() {
      return birthday;
   }
   /**
    * Set
    */
   public void setBirthday(String birthday) {
      this.birthday = birthday;
   }
   /**
    * Get
    */
   public String getCountryName() {
      return countryName;
   }
   /**
    * Set
    */
   public void setCountryName(String countryName) {
      this.countryName = countryName;
   }
   /**
    * Get
    */
   public String getVisitee() {
      return visitee;
   }
   /**
    * Set
    */
   public void setVisitee(String visitee) {
      this.visitee = visitee;
   }
   /**
    * Get
    */
   public String getVisitReason() {
      return visitReason;
   }
   /**
    * Set
    */
   public void setVisitReason(String visitReason) {
      this.visitReason = visitReason;
   }
   /**
    * Get
    */
   public String getEnterTime() {
      return enterTime;
   }
   /**
    * Set
    */
   public void setEnterTime(String enterTime) {
      this.enterTime = enterTime;
   }
   /**
    * Get
    */
   public String getExitTime() {
      return exitTime;
   }
   /**
    * Set
    */
   public void setExitTime(String exitTime) {
      this.exitTime = exitTime;
   }
   /**
    * Get
    */
   public String getCurrentStatus() {
      return currentStatus;
   }
   /**
    * Set
    */
   public void setCurrentStatus(String currentStatus) {
      this.currentStatus = currentStatus;
   }
   /**
    * Get
    */
   public String getIdCardPhoto() {
      return idCardPhoto;
   }
   /**
    * Set
    */
   public void setIdCardPhoto(String idCardPhoto) {
      this.idCardPhoto = idCardPhoto;
   }
   public String toString() {
      return 
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",图片地址 =" + imagePath  +
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",监控图片 =" + surveillancePhoto +
          ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum + 
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   + 
          ",移动电话 =" + mobilePhone +  ", ="     + type      ;
          ",移动电话 =" + mobilePhone +  ", ="     + type       +  ", ="     + gender     +
          ", ="     + identityType +  ", ="     + birthday   +  ", ="     + countryName +
          ", ="     + visitee    +  ", ="     + visitReason +  ", ="     + enterTime  +
          ", ="     + exitTime   +  ", ="     + currentStatus +  ", ="     + idCardPhoto
         ;
   }
}