xuxiuxi
2017-04-13 81b5612ff5fa95f7af8fcb9c10d92495de79150e
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,33 @@
   private String postName;
   // 移动电话
   private String mobilePhone;
   //
   private int 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;
   }
   /**
@@ -85,29 +83,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;
   }
   /**
@@ -166,25 +164,11 @@
      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   +
            ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",图片地址 =" + imagePath  +
                  ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum +
                  ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
                  ",移动电话 =" + mobilePhone +  ", ="     + type      ;
                  ",移动电话 =" + mobilePhone;
   }
}