xuxiuxi
2017-04-19 4101a19a8f119fd4d5408efcfd9db6e90c82ac0c
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java
@@ -35,6 +35,16 @@
   private String birthday;
   //
   private String countryName;
   //
   private String visitee;
   //
   private String visitReason;
   //
   private String enterTime;
   //
   private String exitTime;
   //
   private String currentStatus;
   /**
    * Get 人员主键
@@ -246,13 +256,84 @@
      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;
   }
   public String toString() {
      return
            ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",图片地址 =" + imagePath  +
                  ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum +
                  ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
                  ",移动电话 =" + mobilePhone +  ", ="     + type       +  ", ="     + gender     +
                  ", ="     + identityType +  ", ="     + birthday   +  ", ="     + countryName
            ;
                  ", ="     + identityType +  ", ="     + birthday   +  ", ="     + countryName +
                  ", ="     + visitee    +  ", ="     + visitReason +  ", ="     + enterTime  +
                  ", ="     + exitTime   +  ", ="     + currentStatus;
   }
}