1
zj
7 hours ago f658569891db433854221b80f0a9fa99608cff64
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_";
 
}