xuxiuxi
2017-05-11 109ffe9a777658936a38d0c146579a67c60a0d17
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/AttendanceQueryItem.java
@@ -7,24 +7,20 @@
   private String registerId;
   // 人员名字
   private String username;
   // 图片地址
   private String imagePath;
   // 公司名称
   private String companyName;
   // 座机电话
   private String tel;
   // 监控图片
   private String surveillancePhoto;
   // 证件编号
   private String identifyNum;
   // 部门名称
   private String deptName;
   // 公司主键
   private String companyId;
   // 名称
   private String gender;
   // 职位名称
   private String postName;
   // 移动电话
   private String mobilePhone;
   // 部门名称
   private String deptName;
   // 
   private String type;
   private String time;
   //
   private String attendanceType;
   /**
    * Get 人员主键
@@ -55,45 +51,17 @@
   }
   /**
    * Get 图片地址
    * Get 监控图片
    */
   public String getImagePath() {
      return imagePath;
   public String getSurveillancePhoto() {
      return surveillancePhoto;
   }
   
   /**
    * Set 图片地址
    * Set 监控图片
    */
   public void setImagePath(String imagePath) {
      this.imagePath = imagePath;
   }
   /**
    * Get 公司名称
    */
   public String getCompanyName() {
      return companyName;
   }
   /**
    * Set 公司名称
    */
   public void setCompanyName(String companyName) {
      this.companyName = companyName;
   }
   /**
    * Get 座机电话
    */
   public String getTel() {
      return tel;
   }
   /**
    * Set 座机电话
    */
   public void setTel(String tel) {
      this.tel = tel;
   public void setSurveillancePhoto(String surveillancePhoto) {
      this.surveillancePhoto = surveillancePhoto;
   }
   /**
@@ -111,31 +79,17 @@
   }
   /**
    * Get 部门名称
    * Get 名称
    */
   public String getDeptName() {
      return deptName;
   public String getGender() {
      return gender;
   }
   
   /**
    * Set 部门名称
    * Set 名称
    */
   public void setDeptName(String deptName) {
      this.deptName = deptName;
   }
   /**
    * Get 公司主键
    */
   public String getCompanyId() {
      return companyId;
   }
   /**
    * Set 公司主键
    */
   public void setCompanyId(String companyId) {
      this.companyId = companyId;
   public void setGender(String gender) {
      this.gender = gender;
   }
   /**
@@ -153,38 +107,52 @@
   }
   /**
    * Get 移动电话
    * Get 部门名称
    */
   public String getMobilePhone() {
      return mobilePhone;
   public String getDeptName() {
      return deptName;
   }
   
   /**
    * Set 移动电话
    * Set 部门名称
    */
   public void setMobilePhone(String mobilePhone) {
      this.mobilePhone = mobilePhone;
   public void setDeptName(String deptName) {
      this.deptName = deptName;
   }
   /**
    * Get 
    */
   public String getType() {
      return type;
   public String getTime() {
      return time;
   }
   
   /**
    * Set 
    */
   public void setType(String type) {
      this.type = type;
   public void setTime(String time) {
      this.time = time;
   }
   /**
    * Get
    */
   public String getAttendanceType() {
      return attendanceType;
   }
   /**
    * Set
    */
   public void setAttendanceType(String attendanceType) {
      this.attendanceType = attendanceType;
   }
   public String toString() {
      return 
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",图片地址 =" + imagePath  +
          ",公司名称 =" + companyName +  ",座机电话 =" + tel        +  ",证件编号 =" + identifyNum +
          ",部门名称 =" + deptName   +  ",公司主键 =" + companyId  +  ",职位名称 =" + postName   +
          ",移动电话 =" + mobilePhone +  ", ="     + type      ;
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",监控图片 =" + surveillancePhoto +
          ",证件编号 =" + identifyNum +  ",名称 ="   + gender     +  ",职位名称 =" + postName   +
          ",部门名称 =" + deptName   +  ", ="     + time       +  ", ="     + attendanceType
         ;
   }
}