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 人员名字
@@ -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    ;
                  ",部门名称 =" + deptName   +  ",最新的访问状态 ="+ status     +  ",图片地址 =" + imagePath
            ;
   }
}