自动化立体仓库 - WMS系统
pang.jiabao
2025-04-17 391dd89a6583e0f1eceaf1297fd852e3da32bf68
src/main/java/com/zy/asrs/entity/Node.java
@@ -329,17 +329,6 @@
        return status;
    }
    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 String getRow1$(){
        if (null == this.row1){ return null; }
@@ -432,5 +421,10 @@
        this.memo = memo;
    }
    public String getStatus$() {
        if (Cools.isEmpty(this.status)){
            return "";
        }
        return this.status == 1 ? "正常" : "冻结";
    }
}