songhuangfeng123
2022-07-26 2a6c0b5cefd70e2828e87d6ade3d5f36f723ad7f
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/entity/EmergencyPlanInfoDetailDO.java
@@ -12,15 +12,15 @@
    @TableId(type = IdType.AUTO)
    private Long id;
    private Byte status;
    private Integer status;
    private Date releaseDate;
    private String authorUid;
    private Long authorUid;
    private Long authorDeptId;
    private Byte associatedDanger;
    private Boolean associatedDanger;
    private String type;
@@ -36,11 +36,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;
    }
@@ -52,11 +52,11 @@
        this.releaseDate = releaseDate;
    }
    public String getAuthorUid() {
    public Long getAuthorUid() {
        return authorUid;
    }
    public void setAuthorUid(String authorUid) {
    public void setAuthorUid(Long authorUid) {
        this.authorUid = authorUid;
    }
@@ -68,11 +68,11 @@
        this.authorDeptId = authorDeptId;
    }
    public Byte getAssociatedDanger() {
    public Boolean getAssociatedDanger() {
        return associatedDanger;
    }
    public void setAssociatedDanger(Byte associatedDanger) {
    public void setAssociatedDanger(Boolean associatedDanger) {
        this.associatedDanger = associatedDanger;
    }