package com.xcong.excoin.modules.okxNewPrice.okxpi.query; 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.query.dto.QuantOperateRecode; //订单查询接口 欧易调用的接口是 撮合交易/交易/ GET 获取订单信息 public interface IQueryOrderService { FebsResponse QueryOrder(QuantApiMessage quantApiMessage, String instId, String clOrdId); //检查订单在交易所交易情况 exChangeState返回状态说明 1.filled代表交易成功 2.canceled代表交易失败或者取消 3.live代表交易中 FebsResponse checkOrder(QuantOperateRecode operateRecode); }