#
zhou zhou
昨天 c1c045cad0f39a38409de117e9ddf470804b0d81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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;
    }
}