src/main/java/com/zy/asrs/utils/Utils.java
@@ -624,4 +624,22 @@ return result; } /** * 通过库位号获取所在巷道 */ public static int getLaneByLocNo(String locNo) { int row = Utils.getRow(locNo); switch (row) { case 1: case 2: case 3: return 1; case 4: case 5: case 6: return 2; } return 0; } }