xuxiuxi
2017-05-25 7e7f99a8c753e7a2a70fd854a79bf75b861bdc66
VisitFace/DemoForBsk/app/src/main/java/cn/com/basic/face/discern/entity/Register.java
@@ -26,7 +26,7 @@
      /**
       * 人员名首字母
       */
      public static final String nameSpell = "nameSpell";
      public static final String nameEn = "nameEn";
      /**
       * 性别
       */
@@ -83,6 +83,24 @@
       * 危险人员警告消息
       */
      public static final String warning = "warning";
      /**
       * 证件照
       */
      public static final String idCardPhoto = "idCardPhoto";
      /**
       * 上传自定义照片
       */
      public static final String uploadCustomPhoto = "uploadCustomPhoto";
      /**
       * 监控图片
       */
      public static final String surveillancePhoto = "surveillancePhoto";
      /**
       * 监控图片id
       */
      public static final String surveillancePhotoId = "surveillancePhotoId";
      public static final String visitorTypeId = "visitorTypeId";
   }
   // 人员主键
@@ -90,7 +108,7 @@
   // 人员名字
   private String username;
   // 人员名首字母
   private String nameSpell;
   private String nameEn;
   // 性别
   private String genderId;
   // 国籍
@@ -119,6 +137,16 @@
   private String remark;
   // 危险人员警告消息
   private String warning;
   // 证件照
   private String idCardPhoto;
   // 上传自定义照片
   private String uploadCustomPhoto;
   // 监控图片
   private String surveillancePhoto;
   // 监控图片id
   private String surveillancePhotoId;
   // 访客类型
   private String visitorTypeId;
   /**
    * Get 人员主键
@@ -151,15 +179,15 @@
   /**
    * Get 人员名首字母
    */
   public String getNameSpell() {
      return nameSpell;
   public String getNameEn() {
      return nameEn;
   }
   /**
    * Set 人员名首字母
    */
   public void setNameSpell(String nameSpell) {
      this.nameSpell = nameSpell;
   public void setNameEn(String nameEn) {
      this.nameEn = nameEn;
   }
   /**
@@ -358,13 +386,79 @@
      this.warning = warning;
   }
   /**
    * Get 证件照
    */
   public String getIdCardPhoto() {
      return idCardPhoto;
   }
   /**
    * Set 证件照
    */
   public void setIdCardPhoto(String idCardPhoto) {
      this.idCardPhoto = idCardPhoto;
   }
   /**
    * Get 上传自定义照片
    */
   public String getUploadCustomPhoto() {
      return uploadCustomPhoto;
   }
   /**
    * Set 上传自定义照片
    */
   public void setUploadCustomPhoto(String uploadCustomPhoto) {
      this.uploadCustomPhoto = uploadCustomPhoto;
   }
   /**
    * Get 监控图片
    */
   public String getSurveillancePhoto() {
      return surveillancePhoto;
   }
   /**
    * Set 监控图片
    */
   public void setSurveillancePhoto(String surveillancePhoto) {
      this.surveillancePhoto = surveillancePhoto;
   }
   /**
    * Get 监控图片id
    */
   public String getSurveillancePhotoId() {
      return surveillancePhotoId;
   }
   /**
    * Set 监控图片id
    */
   public void setSurveillancePhotoId(String surveillancePhotoId) {
      this.surveillancePhotoId = surveillancePhotoId;
   }
   public String getVisitorTypeId() {
      return visitorTypeId;
   }
   public void setVisitorTypeId(String visitorTypeId) {
      this.visitorTypeId = visitorTypeId;
   }
   public String toString() {
      return
          ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",人员名首字母 ="+ nameSpell  +
          ",性别 ="   + genderId   +  ",国籍 ="   + countryId  +  ",省 ="    + province   +
          ",市 ="    + city       +  ",出生日期 =" + birthday   +  ",座机电话 =" + tel        +
          ",移动电话 =" + mobilePhone +  ",证件类型 =" + identityTypeId +  ",证件编号 =" + identifyNum +
          ",公司主键 =" + companyId  +  ",部门主键 =" + departmentId +  ",职务主键 =" + postId     +
          ",人员备注消息 ="+ remark     +  ",危险人员警告消息 ="+ warning   ;
      return
            ",人员主键 =" + registerId +  ",人员名字 =" + username   +  ",人员名首字母 ="+ nameEn     +
                  ",性别 ="   + genderId   +  ",国籍 ="   + countryId  +  ",省 ="    + province   +
                  ",市 ="    + city       +  ",出生日期 =" + birthday   +  ",座机电话 =" + tel        +
                  ",移动电话 =" + mobilePhone +  ",证件类型 =" + identityTypeId +  ",证件编号 =" + identifyNum +
                  ",公司主键 =" + companyId  +  ",部门主键 =" + departmentId +  ",职务主键 =" + postId     +
                  ",人员备注消息 ="+ remark     +  ",危险人员警告消息 ="+ warning    +  ",证件照 ="  + idCardPhoto +
                  ",上传自定义照片 ="+ uploadCustomPhoto +  ",监控图片 =" + surveillancePhoto +  ",监控图片id ="+ surveillancePhotoId
            ;
   }
}