xuxiuxi
2017-04-24 c34f11fb7407594f7c1eb69b11f84a45d13cfa1a
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/query/item/AttendanceQueryItem.java
@@ -3,18 +3,66 @@
public class AttendanceQueryItem {
   // 人员主键
   private String registerId;
   // 人员名字
   private String username;
   // 监控图片
   private String surveillancePhoto;
   // 证件编号
   private String identifyNum;
   // 人员名字
   private String name;
   // 名称
   private String gender;
   // 职位名称
   private String postName;
   // 部门名称
   private String deptName;
   // 图片地址
   private String imagePath;
   //
   private String time;
   //
   private String attendanceType;
   /**
    * Get 人员主键
    */
   public String getRegisterId() {
      return registerId;
   }
   /**
    * Set 人员主键
    */
   public void setRegisterId(String registerId) {
      this.registerId = registerId;
   }
   /**
    * Get 人员名字
    */
   public String getUsername() {
      return username;
   }
   /**
    * Set 人员名字
    */
   public void setUsername(String username) {
      this.username = username;
   }
   /**
    * Get 监控图片
    */
   public String getSurveillancePhoto() {
      return surveillancePhoto;
   }
   /**
    * Set 监控图片
    */
   public void setSurveillancePhoto(String surveillancePhoto) {
      this.surveillancePhoto = surveillancePhoto;
   }
   /**
    * Get 证件编号
@@ -28,20 +76,6 @@
    */
   public void setIdentifyNum(String identifyNum) {
      this.identifyNum = identifyNum;
   }
   /**
    * Get 人员名字
    */
   public String getName() {
      return name;
   }
   /**
    * Set 人员名字
    */
   public void setName(String name) {
      this.name = name;
   }
   /**
@@ -87,23 +121,38 @@
   }
   /**
    * Get 图片地址
    * Get
    */
   public String getImagePath() {
      return imagePath;
   public String getTime() {
      return time;
   }
   
   /**
    * Set 图片地址
    * Set
    */
   public void setImagePath(String imagePath) {
      this.imagePath = imagePath;
   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 
          ",证件编号 =" + identifyNum +  ",人员名字 =" + name       +  ",名称 ="   + gender     +
          ",职位名称 =" + postName   +  ",部门名称 =" + deptName   +  ",图片地址 =" + imagePath
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",监控图片 =" + surveillancePhoto +
          ",证件编号 =" + identifyNum +  ",名称 ="   + gender     +  ",职位名称 =" + postName   +
          ",部门名称 =" + deptName   +  ", ="     + time       +  ", ="     + attendanceType
         ;
   }
}