新版仿ok交易所-后端
1
zj
2025-09-30 0c389d73cc79a0027cf779721c6bf184b12f5d86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.yami.trading.common.constants;
 
public class WalletRedisKeys {
    public final static String WALLET_PARTY_ID = "WALLET_PARTY_ID_";
    /**
     * wallet update队列
     */
    public final static String WALLET_QUEUE_UPDATE = "WALLET_QUEUE_UPDATE_";
 
    public final static String WALLET_EXTEND_PARTY_ID = "WALLET_EXTEND_PARTY_ID_";
 
    /**
     * wallet_extend update队列
     */
    public final static String WALLET_EXTEND_QUEUE_UPDATE = "WALLET_EXTEND_QUEUE_UPDATE_";
}