zhang
2025-05-20 1313906bb1eb983d3beece810035e7fc28d6a92f
zy-acs-manager/src/main/java/com/zy/acs/manager/system/entity/Config.java
@@ -146,17 +146,7 @@
        }
    }
    public String getDeleted$(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
            case 1:
                return "是";
            case 0:
                return "否";
            default:
                return String.valueOf(this.deleted);
        }
    }
    public String getTenantId$(){
        TenantService service = SpringUtils.getBean(TenantService.class);
@@ -211,16 +201,6 @@
        }
    }
    public Boolean getDeletedBool(){
        if (null == this.deleted){ return null; }
        switch (this.deleted){
            case 1:
                return true;
            case 0:
                return false;
            default:
                return null;
        }
    }
}