自动化立体仓库 - WMS系统
skyouc
3 天以前 608e6b5a45d2e53879b10aca3475dd8df92e5e5f
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;
        }
    }
}