智慧保安后台管理-外网-验收版本
Administrator
2021-09-13 0d99d26f39e055ee17fdbf2c5cbd1daf695c4310
src/main/java/org/springblade/modules/experience/entity/Experience.java
@@ -71,8 +71,8 @@
    */
   @ApiModelProperty(value = "入职时间")
   @TableField("entryTime")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date entrytime;
   /**
@@ -80,8 +80,8 @@
    */
   @ApiModelProperty(value = "离职时间")
   @TableField("departureTime")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date departuretime;
   /**
@@ -107,10 +107,16 @@
   private Integer id;
   /**
    * 保安员编号
    * 保安员id
    */
   @TableField("securityId")
   private String securityid;
   /**
    * 服务过的派遣单位
    */
   @TableField("server_dispatch_unit")
   private String serverDispatchUnit;
}