Administrator
4 days ago bf06dd27abd841856e893ed0fef46a62f5612012
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.xcong.excoin.modules.okxNewPrice.jiaoyi;
 
import com.xcong.excoin.modules.okxNewPrice.okxpi.trade.TradeRequestBuy;
import com.xcong.excoin.modules.okxNewPrice.okxpi.trade.TradeRequestSell;
 
public interface IMQService {
 
 
 
    /**
     * 消费买入消息
     * @param returnVo
     */
    void operationBuyMsg(TradeRequestBuy returnVo);
 
 
    /**
     * 消费卖出消息
     * @param returnVo
     */
    void operationSellMsg(TradeRequestSell returnVo);
}