zj
2025-02-25 dd315d5732e14fcf3df71e0cf213cc442bd8607b
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_";
    
}