新版仿ok交易所-后端
C2C
zyy
2025-10-27 d94a5b9c4c4b7f64eae59b19be2bb5019786b865
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.yami.trading.common.constants;
 
public class PartyRedisKeys {
    /**
     * partyId
     */
    public final static String PARTY_ID = "PARTY_ID_";
    /**
     * partyId
     */
    public final static String PARTY_USERNAME = "PARTY_USERNAME_";
    /**
     * 在线用户
     */
    public final static String PARTY_ONLINEUSER = "PARTY_ONLINEUSER_";
    public final static String PARTY_ONLINEUSER_PARTYID = "PARTY_ONLINEUSER_PARTYID_";
    /**
     * 推荐人
     */
    public final static String USER_RECOM_PARTYID = "USER_RECOM_PARTYID_";
    public final static String USER_RECOM_RECO_ID = "USER_RECOM_RECO_ID_";
 
}