Administrator
8 days ago 7903e78b53a98e4ff0670a41476f2d1c16ac19fb
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);
}