智慧保安后台管理项目备份
zhongrj
2024-05-24 b5960d1968e007b91d4d33dd7cbb74f1b566f2c1
src/main/java/org/springblade/modules/dispatcher/entity/DispatcherUnit.java
@@ -7,6 +7,7 @@
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.io.Serializable;
import java.util.Date;
@@ -29,13 +30,13 @@
   private Long id;
   /**
    * 派遣单位名称
    */
   * 派遣单位名称
   */
   private String name;
   /**
    * 部门id
    */
   * 部门id
   */
   @TableField("dept_id")
   private Long deptId;
@@ -80,7 +81,33 @@
   /**
    * 行政区id
    */
   private Long jurisdiction;
   private String 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;
}