智慧保安后台管理-外网-验收版本
tangzy
2021-12-06 cc057177b2fb17aee9a173a6adbabdc578fd74c7
src/main/java/org/springblade/modules/dispatcher/entity/DispatcherUnit.java
@@ -34,10 +34,10 @@
   private String name;
   /**
   * 保安公司 tenant_id
   * 部门id
   */
   @TableField("tenant_id")
   private String tenantId;
   @TableField("dept_id")
   private Long deptId;
   /**
    * 联系人
@@ -77,5 +77,34 @@
   @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
   private Date createTime;
   /**
    * 行政区id
    */
   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;
}