自动化立体仓库 - WMS系统
skyouc
3 天以前 6b008f12fbb6d2f9a1c07021e7d15ee452c5a0d3
src/main/java/com/zy/api/enums/MatLocType.java
@@ -39,24 +39,23 @@
    public static Long getTag(String type) {
        if (type.equals(MatType.LARGE.type)) {
            return Long.parseLong(MatLocType.AUTOMATED.type);
            return Long.parseLong(MatLocType.EO_HOLDING.type);
        } else if (type.equals(MatType.MIDDEL.type)) {
            return Long.parseLong(MatLocType.SO_HOLDING.type);
        } else if (type.equals(MatType.SMALL.type)) {
            return Long.parseLong(MatLocType.EO_HOLDING.type);
            return Long.parseLong(MatLocType.AUTOMATED.type);
        } else {
            return null;
        }
    }
    public static String getMatTag(String type) {
        if (type.equals(MatLocType.AUTOMATED.type)) {
        if (type.equals(MatLocType.EO_HOLDING.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)) {
        } else if (type.equals(MatLocType.AUTOMATED.type)) {
            return MatType.SMALL.type;
        } else {
            return null;