自动化立体仓库 - WMS系统
skyouc
16 小时以前 680c4484aebd032289a7a5ab1bad5c6c357ffee9
src/main/java/com/zy/api/enums/MatLocType.java
@@ -48,4 +48,18 @@
            return null;
        }
    }
    public static String getMatTag(String type) {
        if (type.equals(MatLocType.AUTOMATED.type)) {
            return MatType.LARGE.type;
        } else if (type.equals(MatLocType.SO_HOLDING.type)) {
            return MatType.MIDDEL.type;
        } else if (type.equals(MatLocType.EO_HOLDING.type)) {
            return MatType.SMALL.type;
        } else {
            return null;
        }
    }
}