tangzy
2021-07-14 c2c50ffadc3e9cf100dfe7910b60bea0b9ce9158
src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
@@ -60,9 +60,9 @@
      @ApiModelProperty(value = "派遣人")
      private String dispatcher;
   /**
   * 派遣时间
   * 派遣开始时间
   */
      @ApiModelProperty(value = "派遣时间")
      @ApiModelProperty(value = "派遣开始时间")
      @TableField("dispatcherTime")
      @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
      @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@@ -81,4 +81,26 @@
   private String dispatcherUnitId;
   /**
    * 派遣保安ids
    */
   @TableField("user_ids")
   private String userIds;
   /**
    * 派遣结束时间
    */
   @TableField("end_time")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date endTime;
   /**
    * 保安公司(组织机构)id
    */
   @TableField("dept_id")
   private Long deptId;
}