kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoPageDO.java
@@ -8,15 +8,36 @@
@TableName("emergency_plan")
public class EmergencyPlanInfoPageDO {
    private  String authorName;
    public String getAuthorName() {
        return authorName;
    }
    public void setAuthorName(String authorName) {
        this.authorName = authorName;
    }
    private Boolean abolishStatus;
    public Boolean getAbolishStatus() {
        return abolishStatus;
    }
    public void setAbolishStatus(Boolean abolishStatus) {
        this.abolishStatus = abolishStatus;
    }
    private Long id;
    private String name ;
    private Byte status ;
    private Integer status ;
    private String type;
    private Byte type;
    private String level;
    private Byte level;
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date releaseDate;
@@ -37,27 +58,27 @@
        this.name = name;
    }
    public Byte getStatus() {
    public Integer getStatus() {
        return status;
    }
    public void setStatus(Byte status) {
    public void setStatus(Integer status) {
        this.status = status;
    }
    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;
    }