智慧保安后台管理-外网-验收版本
Administrator
2021-12-04 f7115db7eb622bcd2dd4ec62ce6f2b380a46bc08
src/main/java/org/springblade/modules/dispatcher/entity/DispatcherUnit.java
@@ -82,5 +82,29 @@
    */
   private Long jurisdiction;
   /**
    * 合同生效时间
    */
   @TableField("start_time")
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date startTime;
   /**
    * 合同到期时间
    */
   @TableField("end_time")
   @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
   @DateTimeFormat(pattern = "yyyy-MM-dd")
   private Date endTime;
   /**
    * 保安服务类型
    */
   @TableField("serve_type")
   private String serveType;
}