tangzy
2021-08-20 f54ff9396a241c7fb9a019e1bbc0b10fbf0634d1
src/main/java/org/springblade/modules/dispatcher/entity/DispatcherUnit.java
@@ -82,5 +82,23 @@
    */
   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;
}