智慧保安后台管理项目备份
zhongrj
2024-05-24 b5960d1968e007b91d4d33dd7cbb74f1b566f2c1
src/main/java/org/springblade/modules/system/entity/User.java
@@ -125,7 +125,7 @@
    * 身高
    */
   @ApiModelProperty(value = "身高")
   private Float height;
   private String height;
   /**
    * 联系电话
    */
@@ -150,6 +150,8 @@
    * 入职时间
    */
   @ApiModelProperty(value = "入职时间")
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private String rtime;
   private String hold;
   private String jurisdiction;
@@ -183,5 +185,47 @@
    */
   private String healstats;
   /**
    * 发证日期(保安证)
    */
   @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;
   private String guncode;
   /**
    * 审查时间
    */
   @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;
   /**
    * 押运人员设备编号
    */
   @TableField("equipment_code")
   private String equipmentCode;
}