kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoDetailDO.java
@@ -9,10 +9,20 @@
@TableName("emergency_plan")
public class EmergencyPlanInfoDetailDO {
    private String authorName;
    public String getAuthorName() {
        return authorName;
    }
    public void setAuthorName(String authorName) {
        this.authorName = authorName;
    }
    @TableId(type = IdType.AUTO)
    private Long id;
    private Byte status;
    private Integer status;
    private Date releaseDate;
@@ -20,11 +30,11 @@
    private Long authorDeptId;
    private Byte associatedDanger;
    private Boolean associatedDanger;
    private String type;
    private Byte type;
    private String level;
    private Byte level;
    private String name ;
@@ -36,11 +46,11 @@
        this.id = id;
    }
    public Byte getStatus() {
    public Integer getStatus() {
        return status;
    }
    public void setStatus(Byte status) {
    public void setStatus(Integer status) {
        this.status = status;
    }
@@ -68,27 +78,27 @@
        this.authorDeptId = authorDeptId;
    }
    public Byte getAssociatedDanger() {
    public Boolean getAssociatedDanger() {
        return associatedDanger;
    }
    public void setAssociatedDanger(Byte associatedDanger) {
    public void setAssociatedDanger(Boolean associatedDanger) {
        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;
    }