智慧保安后台管理-外网-验收版本
tangzy
2021-12-06 cc057177b2fb17aee9a173a6adbabdc578fd74c7
src/main/java/org/springblade/modules/dispatcher/entity/Dispatcher.java
@@ -62,12 +62,12 @@
      @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")
      @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
      @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date dispatchertime;
   /**
   * 派遣地址
@@ -83,4 +83,61 @@
   private String dispatcherUnitId;
   /**
    * 派遣保安ids
    */
   @TableField("user_ids")
   private String userIds;
   /**
    * 派遣结束时间
    */
   @TableField("end_time")
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date endTime;
   /**
    * 保安公司(组织机构)id
    */
   @TableField("dept_id")
   private Long deptId;
   /**
    * 辖区
    */
   private String jurisdiction;
   /**
    * 派遣人数
    */
   private Integer num;
   /**
    * 创建时间
    */
   @TableField("create_time")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date createTime;
   /**
    * 更新时间
    */
   @TableField("update_time")
   @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date updateTime;
   /**
    * 派遣状态  0:已派遣  1:派遣结束
    */
   private Integer status;
}