#
luxiaotao1123
2024-11-09 20aa51767d2bcc0baf30e1eee5ccce05ace9a6fe
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Jam.java
@@ -210,31 +210,17 @@
        return null;
    }
    public String getCycleAvo$(){
    public Boolean getCycleAvoBool(){
        if (null == this.cycleAvo){ return null; }
        switch (this.cycleAvo){
            case 1:
                return "是";
                return true;
            case 0:
                return "否";
                return false;
            default:
                return String.valueOf(this.cycleAvo);
                return null;
        }
    }
    public String getStatus$(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return "正常";
            case 0:
                return "冻结";
            default:
                return String.valueOf(this.status);
        }
    }
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
@@ -247,7 +233,5 @@
                return null;
        }
    }
}