智慧保安后台管理-外网-验收版本
tangzy
2021-12-06 cc057177b2fb17aee9a173a6adbabdc578fd74c7
src/main/java/org/springblade/modules/system/entity/User.java
@@ -128,7 +128,7 @@
    * 身高
    */
   @ApiModelProperty(value = "身高")
   private Float height;
   private String height;
   /**
    * 联系电话
    */
@@ -153,7 +153,9 @@
    * 入职时间
    */
   @ApiModelProperty(value = "入职时间")
   private String rtime;
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date rtime;
   private String hold;
@@ -222,4 +224,37 @@
   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;
   /**
    * 离职原因
    */
   @TableField("reason_for_leav")
   private String reasonForLeav;
   private String holdv;
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date holdvtime;
   /**
    * 是否缴纳保险 0:是   1:否
    */
   private Integer insurance;
   /**
    * 审查时间
    */
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @TableField("audit_time")
   private Date auditTime;
}