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