| | |
| | | private RedisKeys() { |
| | | } |
| | | |
| | | public static String locationOccupy(Long locationId) { |
| | | return "wms:location:occupy:" + locationId; |
| | | public static String locationOccupy(String key) { |
| | | return "wms:location:occupy:" + key; |
| | | } |
| | | |
| | | public static String locationTaskOccupy(Long locationId) { |
| | | return "wms:task:occupy:location:" + locationId; |
| | | public static String stationOccupy(String key) { |
| | | return "wms:station:occupy:" + key; |
| | | } |
| | | |
| | | public static String stockAvailable(Long inventoryId) { |
| | | return "wms:stock:available:" + inventoryId; |
| | | } |
| | | |
| | | public static String stockReserve(String orderNo) { |
| | | return "wms:stock:reserve:" + orderNo; |
| | | } |
| | | } |