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); }