智慧保安后台管理-外网项目备份
Administrator
2021-08-31 08363052cecb30230a2c8b3eba791ca8d1be00a5
src/main/java/org/springblade/modules/system/entity/User.java
@@ -128,7 +128,7 @@
    * 身高
    */
   @ApiModelProperty(value = "身高")
   private Float height;
   private Integer height;
   /**
    * 联系电话
    */
@@ -153,11 +153,13 @@
    * 入职时间
    */
   @ApiModelProperty(value = "入职时间")
   private String rtime;
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date rtime;
   private String hold;
   private Integer status;
   /**
    * 行政区域id
    */
@@ -211,4 +213,23 @@
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date birthtime;
   /**
    * 是否报名培训  1:是   2:否
    */
   @TableField("is_train")
   private Integer isTrain;
   /**
    * 健康状态  0:健康 1:良好 2:一般 3:较差
    */
   private  String healstats;
   private  String soil;
   /**
    * 发证日期(保安证)
    */
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   @TableField("paper_time")
   private Date paperTime;
}