xuxiuxi
2017-03-31 03f65ab5ad75eae6a438a65bcd66ce25a7551d1a
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/CheckInQueryItem.java
@@ -19,10 +19,12 @@
   private String deptName;
   // 公司主键
   private String companyId;
   // 职位主键
   // 职位名称
   private String postName;
   // 移动电话
   private String mobilePhone;
   //
   private int type;
   /**
    * Get 人员主键
@@ -137,14 +139,14 @@
   }
   /**
    * Get 职位主键
    * Get 职位名称
    */
   public String getPostName() {
      return postName;
   }
   
   /**
    * Set 职位主键
    * Set 职位名称
    */
   public void setPostName(String postName) {
      this.postName = postName;
@@ -164,11 +166,25 @@
      this.mobilePhone = mobilePhone;
   }
   /**
    * Get
    */
   public int getType() {
      return type;
   }
   /**
    * Set
    */
   public void setType(int type) {
      this.type = type;
   }
   public String toString() {
      return 
          ",人员主键 =" + id         +  ",人员名字 =" + name       +  ",图片地址 =" + imagePath  + 
          ",公司名称 =" + companyName +  ",座机电话 =" + phone      +  ",证件编号 =" + identify   + 
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位主键 =" + postName   +
          ",移动电话 =" + mobilePhone;
                  ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
                  ",移动电话 =" + mobilePhone +  ", ="     + type      ;
   }
}