peternameyakj
2025-04-29 acf1c75a32aa05f34d9d60b6ae3f3e052b532e9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package project.contract;
 
public class ContractRedisKeys {
 
    /**
     * 永续合约,orderNo做key
     */
    public final static String CONTRACT_ORDERNO = "CONTRACT_ORDERNO_";
    
    /**
     * 永续合约,查询订单map,partyid做key
     */
    public final static String CONTRACT_SUBMITTED_ORDER_PARTY_ID = "CONTRACT_SUBMITTED_ORDER_PARTY_ID_";
 
    /**
     * 永续合约,总资产,partyid做key
     */
    public final static String CONTRACT_ASSETS_PARTY_ID = "CONTRACT_ASSETS_PARTY_ID_";
 
    /**
     * 永续合约,总保证金,partyid做key
     */
    public final static String CONTRACT_ASSETS_DEPOSIT_PARTY_ID = "CONTRACT_ASSETS_DEPOSIT_PARTY_ID_";
 
    /**
     * 永续合约,总未实现盈利,partyid做key
     */
    public final static String CONTRACT_ASSETS_PROFIT_PARTY_ID = "CONTRACT_ASSETS_PROFIT_PARTY_ID_";
    
}