自动化立体仓库 - WMS系统
#
LSH
2023-01-06 499432a81f8c30ac65e9ca815edec6c9c0c93607
src/main/java/com/zy/ints/entity/Prdt.java
@@ -76,5 +76,19 @@
//            null    // 状态[非空]
//    );
    public String getStatus$(){
        if (null == this.status){ return null; }
        switch (this.status){
            case 0:
                return "0(初始状态)";
            case 1:
                return "1(已接收)";
            case 2:
                return "2(异常)";
            default:
                return String.valueOf(this.status);
        }
    }
}