xuxiuxi
2017-04-10 324e0a59ff4fcd11b3ec8bbfecc893ac6a255592
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/CheckInQueryItem.java
@@ -4,17 +4,17 @@
public class CheckInQueryItem {
   // 人员主键
   private String id;
   private String registerId;
   // 人员名字
   private String name;
   private String username;
   // 图片地址
   private String imagePath;
   // 公司名称
   private String companyName;
   // 座机电话
   private String phone;
   private String tel;
   // 证件编号
   private String identify;
   private String identifyNum;
   // 部门名称
   private String deptName;
   // 公司主键
@@ -23,35 +23,35 @@
   private String postName;
   // 移动电话
   private String mobilePhone;
   //
   private int type;
   //
   private String type;
   /**
    * Get 人员主键
    */
   public String getId() {
      return id;
   public String getRegisterId() {
      return registerId;
   }
   /**
    * Set 人员主键
    */
   public void setId(String id) {
      this.id = id;
   public void setRegisterId(String registerId) {
      this.registerId = registerId;
   }
   /**
    * Get 人员名字
    */
   public String getName() {
      return name;
   public String getUsername() {
      return username;
   }
   /**
    * Set 人员名字
    */
   public void setName(String name) {
      this.name = name;
   public void setUsername(String username) {
      this.username = username;
   }
   /**
@@ -60,7 +60,7 @@
   public String getImagePath() {
      return imagePath;
   }
   /**
    * Set 图片地址
    */
@@ -74,7 +74,7 @@
   public String getCompanyName() {
      return companyName;
   }
   /**
    * Set 公司名称
    */
@@ -85,29 +85,29 @@
   /**
    * Get 座机电话
    */
   public String getPhone() {
      return phone;
   public String getTel() {
      return tel;
   }
   /**
    * Set 座机电话
    */
   public void setPhone(String phone) {
      this.phone = phone;
   public void setTel(String tel) {
      this.tel = tel;
   }
   /**
    * Get 证件编号
    */
   public String getIdentify() {
      return identify;
   public String getIdentifyNum() {
      return identifyNum;
   }
   /**
    * Set 证件编号
    */
   public void setIdentify(String identify) {
      this.identify = identify;
   public void setIdentifyNum(String identifyNum) {
      this.identifyNum = identifyNum;
   }
   /**
@@ -116,7 +116,7 @@
   public String getDeptName() {
      return deptName;
   }
   /**
    * Set 部门名称
    */
@@ -130,7 +130,7 @@
   public String getCompanyId() {
      return companyId;
   }
   /**
    * Set 公司主键
    */
@@ -144,7 +144,7 @@
   public String getPostName() {
      return postName;
   }
   /**
    * Set 职位名称
    */
@@ -158,7 +158,7 @@
   public String getMobilePhone() {
      return mobilePhone;
   }
   /**
    * Set 移动电话
    */
@@ -167,24 +167,24 @@
   }
   /**
    * Get
    * Get
    */
   public int getType() {
   public String getType() {
      return type;
   }
   /**
    * Set
    * Set
    */
   public void setType(int type) {
   public void setType(String type) {
      this.type = type;
   }
   public String toString() {
      return
            ",人员主键 =" + id         +  ",人员名字 =" + name       +  ",图片地址 =" + imagePath  +
                  ",公司名称 =" + companyName +  ",座机电话 =" + phone      +  ",证件编号 =" + identify   +
                  ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
                  ",移动电话 =" + mobilePhone +  ", ="     + type      ;
      return
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",图片地址 =" + imagePath  +
          ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum +
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
          ",移动电话 =" + mobilePhone +  ", ="     + type      ;
   }
}