#
luxiaotao1123
2024-09-21 bf616f97b4d1a96e0ee89c52178a88e044e52a1d
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;
        }
    }
}