tangzy
2021-07-14 5fb38e71cc5ab8eee8e7f489c4476d59104f07df
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;
}