kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/model/dto/req/EmergencyPlanReqDTO.java
@@ -6,17 +6,7 @@
import java.util.List;
public class EmergencyPlanReqDTO {
    private Boolean abolishStatus;
    public Boolean getAbolishStatus() {
        return abolishStatus;
    }
    public void setAbolishStatus(Boolean abolishStatus) {
        this.abolishStatus = abolishStatus;
    }
    //编写人名称
    private String authorName;
    public String getAuthorName() {
@@ -28,30 +18,30 @@
    }
    private Long id;
    //状态
    private Integer status;
    //发布实施日期
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date releaseDate;
    //编写人uid
    private Long authorUid;
    //编写部门id
    private Long authorDeptId;
    //危险源关联:0否1是
    private Boolean associatedDanger;
    private String type;
    private String level;
    //预案类型(数据字典)
    private Byte type;
    //预案级别(数据字典)
    private Byte level;
    //预案名称
    private String name ;
    private List<EmergencyPlanAreaReqDTO> areaList;
    //部门列表
    private List<EmergencyPlanDepartmentReqDTO> deptList;
    //文件列表
    private List<EmergencyPlanFileReqDTO> fileList;
    //队伍列表
    private List<EmergencyPlanTeamReqDTO> teamList;
    public Long getId() {
@@ -102,19 +92,19 @@
        this.associatedDanger = associatedDanger;
    }
    public String getType() {
    public Byte getType() {
        return type;
    }
    public void setType(String type) {
    public void setType(Byte type) {
        this.type = type;
    }
    public String getLevel() {
    public Byte getLevel() {
        return level;
    }
    public void setLevel(String level) {
    public void setLevel(Byte level) {
        this.level = level;
    }