xuxiuxi
2017-04-07 490ffd78c5b6efd53543bbfa8401a9aa7b0c4f53
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/VisitQueryItem.java
@@ -33,6 +33,8 @@
   private String deptName;
   // 最新的访问状态
   private String status;
   // 图片地址
   private String imagePath;
   /**
    * Get 人员名字
@@ -40,7 +42,7 @@
   public String getName() {
      return name;
   }
   /**
    * Set 人员名字
    */
@@ -54,7 +56,7 @@
   public String getMobilePhone() {
      return mobilePhone;
   }
   /**
    * Set 移动电话
    */
@@ -68,7 +70,7 @@
   public String getGender() {
      return gender;
   }
   /**
    * Set 名称
    */
@@ -82,7 +84,7 @@
   public String getIdentityType() {
      return identityType;
   }
   /**
    * Set 名称
    */
@@ -96,7 +98,7 @@
   public String getCountryName() {
      return countryName;
   }
   /**
    * Set 名称
    */
@@ -110,7 +112,7 @@
   public String getIdentifyNum() {
      return identifyNum;
   }
   /**
    * Set 证件编号
    */
@@ -124,7 +126,7 @@
   public String getBirthday() {
      return birthday;
   }
   /**
    * Set 出生日期
    */
@@ -138,7 +140,7 @@
   public String getCompnayName() {
      return compnayName;
   }
   /**
    * Set 公司名称
    */
@@ -152,7 +154,7 @@
   public String getToPerson() {
      return toPerson;
   }
   /**
    * Set 人员名字
    */
@@ -166,7 +168,7 @@
   public String getStartTime() {
      return startTime;
   }
   /**
    * Set 来访时间
    */
@@ -180,7 +182,7 @@
   public String getLastTime() {
      return lastTime;
   }
   /**
    * Set 签离时间
    */
@@ -194,7 +196,7 @@
   public String getBfsq() {
      return bfsq;
   }
   /**
    * Set 访问事由
    */
@@ -208,7 +210,7 @@
   public String getDeptName() {
      return deptName;
   }
   /**
    * Set 部门名称
    */
@@ -222,7 +224,7 @@
   public String getStatus() {
      return status;
   }
   /**
    * Set 最新的访问状态
    */
@@ -230,12 +232,27 @@
      this.status = status;
   }
   /**
    * Get 图片地址
    */
   public String getImagePath() {
      return imagePath;
   }
   /**
    * Set 图片地址
    */
   public void setImagePath(String imagePath) {
      this.imagePath = imagePath;
   }
   public String toString() {
      return
          ",人员名字 =" + name       +  ",移动电话 =" + mobilePhone +  ",名称 ="   + gender     +
          ",名称 ="   + identityType +  ",名称 ="   + countryName +  ",证件编号 =" + identifyNum +
          ",出生日期 =" + birthday   +  ",公司名称 =" + compnayName +  ",人员名字 =" + toPerson   +
          ",来访时间 =" + startTime  +  ",签离时间 =" + lastTime   +  ",访问事由 =" + bfsq       +
          ",部门名称 =" + deptName   +  ",最新的访问状态 ="+ status    ;
      return
            ",人员名字 =" + name       +  ",移动电话 =" + mobilePhone +  ",名称 ="   + gender     +
                  ",名称 ="   + identityType +  ",名称 ="   + countryName +  ",证件编号 =" + identifyNum +
                  ",出生日期 =" + birthday   +  ",公司名称 =" + compnayName +  ",人员名字 =" + toPerson   +
                  ",来访时间 =" + startTime  +  ",签离时间 =" + lastTime   +  ",访问事由 =" + bfsq       +
                  ",部门名称 =" + deptName   +  ",最新的访问状态 ="+ status     +  ",图片地址 =" + imagePath
            ;
   }
}