1
zj
12 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
24
25
26
27
28
29
30
31
32
33
34
35
package com.yami.trading.common.constants;
 
public class ContractRedisKeys {
 
    /**
     * 永续合约,orderNo做key
     */
    public final static String CONTRACT_ORDERNO = "CONTRACT_ORDERNO_";
 
 
    /**
     * 永续利润
     */
    public final static String CONTRACT_PROFIT_V1 = "CONTRACT_PROFIT_V1";
    /**
     * 永续合约,查询订单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_";
    
}