#
Junjie
昨天 51a1786ef3e4e016d5f3f7bad8c2e2e8a84247a6
src/main/java/com/zy/asrs/utils/Utils.java
@@ -69,7 +69,7 @@
            String[] split = locNo.split(LOC_NO_FLAG);
            return Integer.parseInt(split[0]);
        }
        throw new RuntimeException("库位解析异常");
        throw new RuntimeException(locNo + "库位解析异常");
    }
    /**
@@ -80,7 +80,7 @@
            String[] split = locNo.split(LOC_NO_FLAG);
            return Integer.parseInt(split[1]);
        }
        throw new RuntimeException("库位解析异常");
        throw new RuntimeException(locNo + "库位解析异常");
    }
    /**
@@ -91,7 +91,7 @@
            String[] split = locNo.split(LOC_NO_FLAG);
            return Integer.parseInt(split[2]);
        }
        throw new RuntimeException("库位解析异常");
        throw new RuntimeException(locNo + "库位解析异常");
    }
    public static String getLocNo(Number row, Number bay, Number lev) {