#
luxiaotao1123
2024-09-19 ee57434a3453b95961a86e5c64d4d24d487fc200
zy-acs-manager/src/main/java/com/zy/acs/manager/manager/entity/Code.java
@@ -140,31 +140,17 @@
//            null    // 备注
//    );
    public String getConcer$(){
    public Boolean getCornerBool(){
        if (null == this.concer){ return null; }
        switch (this.concer){
            case 1:
                return "是";
                return true;
            case 0:
                return "否";
                return false;
            default:
                return String.valueOf(this.concer);
                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; }
@@ -177,7 +163,5 @@
                return null;
        }
    }
}