package com.vincent.rsf.server.common.redis; public final class RedisKeys { private RedisKeys() { } public static String locationOccupy(Long locationId) { return "wms:location:occupy:" + locationId; } public static String locationTaskOccupy(Long locationId) { return "wms:task:occupy:location:" + locationId; } public static String stockAvailable(Long inventoryId) { return "wms:stock:available:" + inventoryId; } public static String stockReserve(String orderNo) { return "wms:stock:reserve:" + orderNo; } }