Administrator
2025-12-15 f29b91353709f8ccc441216629804ee85f6a74c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);
}