zhangfeng
2022-09-21 17f8dd032fc267b38cdddc88de416aeab2600f90
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfo.java
@@ -9,6 +9,26 @@
@TableName("emergency_plan")
public class EmergencyPlanInfo {
    private Boolean abolishStatus;
    public Boolean getAbolishStatus() {
        return abolishStatus;
    }
    public void setAbolishStatus(Boolean abolishStatus) {
        this.abolishStatus = abolishStatus;
    }
    private String authorName;
    public String getAuthorName() {
        return authorName;
    }
    public void setAuthorName(String authorName) {
        this.authorName = authorName;
    }
    @TableId(type = IdType.AUTO)
    private Long id;
@@ -32,9 +52,9 @@
    private Boolean associatedDanger;
    private String type;
    private Byte type;
    private String level;
    private Byte level;
    private String name ;
@@ -126,19 +146,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;
    }