Administrator
2025-12-16 ff095d35e4b627a1a11644661ac0867e95efa210
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.xcong.excoin.modules.okxNewPrice.okxpi.order;
 
import com.xcong.excoin.modules.okxNewPrice.utils.FebsResponse;
import com.xcong.excoin.modules.okxNewPrice.okxpi.config.Dto.QuantApiMessage;
import com.xcong.excoin.modules.okxNewPrice.okxpi.config.Dto.TradeOrderDto;
import com.xcong.excoin.modules.okxNewPrice.okxpi.trade.TradeRequestBuy;
import com.xcong.excoin.modules.okxNewPrice.okxpi.trade.TradeRequestSell;
 
//订单交易接口 欧易调用的接口是 撮合交易/交易/ POST 下单
public interface ITradeOrderService {
    FebsResponse QuantExchangeReturnVo(TradeOrderDto tradeOrderDto, QuantApiMessage quantApiMessage);
 
    /**
     * 消费买入消息
     * @param returnVo
     */
    void operationBuyMsg(TradeRequestBuy returnVo);
 
    /**
     * 消费卖出消息
     * @param returnVo
     */
    void operationSellMsg(TradeRequestSell returnVo);
}