1
zhang
2 天以前 2a6e27f1c0064690d6fc6ab137d64c02fc0742da
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/FuncSta.java
@@ -155,17 +155,20 @@
        }
    }
    public String getDeleted$(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
    public Boolean getStatusBool(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 1:
                return "是";
                return true;
            case 0:
                return "否";
                return false;
            default:
                return String.valueOf(this.deleted);
                return null;
        }
    }
}