自动化立体仓库 - WMS系统
skyouc
18 小时以前 c8e13c6d28a3f10666d97624762938188999e575
src/main/java/com/zy/api/enums/MatLocType.java
@@ -35,4 +35,17 @@
            return null;
        }
    }
    public static Long getTag(String type) {
        if (type.equals(MatType.LARGE.type)) {
            return Long.parseLong(MatLocType.AUTOMATED.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);
        } else {
            return null;
        }
    }
}