智慧保安后台管理-验收版本
tangzy
2021-12-06 30df94c05573a426d030510d4dd58ae1d93bfb7a
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;
@@ -83,4 +84,30 @@
   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;
}