自动化立体仓库 - WMS系统
#
LSH
2023-02-25 508aac599c24711a3c1f7cfa76d9025c8e73b89f
src/main/java/com/zy/ints/entity/ErpLk.java
@@ -94,5 +94,19 @@
//            null    // 备用字段3
//    );
    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);
        }
    }
}