新版仿ok交易所-后端
1
zj
12 hours ago b28a97e1bf66e3279e78f31ce58122427787ceec
trading-order-common/src/main/java/com/yami/trading/common/constants/ContractRedisKeys.java
@@ -2,29 +2,34 @@
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_";
    /**
     * 永续合约,orderNo做key
     */
    public final static String CONTRACT_ORDERNO = "CONTRACT_ORDERNO_";
   /**
    * 永续合约,总资产,partyid做key
    */
   public final static String CONTRACT_ASSETS_PARTY_ID = "CONTRACT_ASSETS_PARTY_ID_";
    /**
     * 永续利润
     */
    public final static String CONTRACT_PROFIT_V1 = "CONTRACT_PROFIT_V1";
   /**
    * 永续合约,总保证金,partyid做key
    */
   public final static String CONTRACT_ASSETS_DEPOSIT_PARTY_ID = "CONTRACT_ASSETS_DEPOSIT_PARTY_ID_";
    /**
     * 永续合约,查询订单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_PROFIT_PARTY_ID = "CONTRACT_ASSETS_PROFIT_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_";
}