zhou zhou
3 天以前 f27309d45c7ef46b0aea98107b67d0c5b46d4217
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.vincent.rsf.server.common.redis;
 
public final class RedisKeys {
 
    private RedisKeys() {
    }
 
    public static String locationOccupy(String key) {
        return "wms:location:occupy:" + key;
    }
 
    public static String stationOccupy(String key) {
        return "wms:station:occupy:" + key;
    }
 
 
}