xuxiuxi
2017-04-11 257bc68fa55f55951c1cf8b7de4045039d27d64e
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/CheckInQueryItem.java
@@ -4,52 +4,54 @@
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;
   // 公司主键
   private String companyId;
   // 职位主键
   // 职位名称
   private String postName;
   // 移动电话
   private String mobilePhone;
   //
   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;
   }
   /**
@@ -83,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;
   }
   /**
@@ -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 String getType() {
      return type;
   }
   /**
    * Set
    */
   public void setType(String type) {
      this.type = type;
   }
   public String toString() {
      return 
          ",人员主键 =" + id         +  ",人员名字 =" + name       +  ",图片地址 =" + imagePath  +
          ",公司名称 =" + companyName +  ",座机电话 =" + phone      +  ",证件编号 =" + identify   +
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位主键 =" + postName   +
          ",移动电话 =" + mobilePhone;
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",图片地址 =" + imagePath  +
          ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum +
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
          ",移动电话 =" + mobilePhone +  ", ="     + type      ;
   }
}