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 人员主键
@@ -30,7 +32,7 @@
   public String getId() {
      return id;
   }
   /**
    * Set 人员主键
    */
@@ -44,7 +46,7 @@
   public String getName() {
      return name;
   }
   /**
    * Set 人员名字
    */
@@ -58,7 +60,7 @@
   public String getImagePath() {
      return imagePath;
   }
   /**
    * Set 图片地址
    */
@@ -72,7 +74,7 @@
   public String getCompanyName() {
      return companyName;
   }
   /**
    * Set 公司名称
    */
@@ -86,7 +88,7 @@
   public String getPhone() {
      return phone;
   }
   /**
    * Set 座机电话
    */
@@ -100,7 +102,7 @@
   public String getIdentify() {
      return identify;
   }
   /**
    * Set 证件编号
    */
@@ -114,7 +116,7 @@
   public String getDeptName() {
      return deptName;
   }
   /**
    * Set 部门名称
    */
@@ -128,7 +130,7 @@
   public String getCompanyId() {
      return companyId;
   }
   /**
    * Set 公司主键
    */
@@ -137,14 +139,14 @@
   }
   /**
    * Get 职位主键
    * Get 职位名称
    */
   public String getPostName() {
      return postName;
   }
   /**
    * Set 职位主键
    * Set 职位名称
    */
   public void setPostName(String postName) {
      this.postName = postName;
@@ -156,7 +158,7 @@
   public String getMobilePhone() {
      return mobilePhone;
   }
   /**
    * Set 移动电话
    */
@@ -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;
      return
            ",人员主键 =" + id         +  ",人员名字 =" + name       +  ",图片地址 =" + imagePath  +
                  ",公司名称 =" + companyName +  ",座机电话 =" + phone      +  ",证件编号 =" + identify   +
                  ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
                  ",移动电话 =" + mobilePhone +  ", ="     + type      ;
   }
}