YYC
2023-09-07 7af11da07988e252a0e6d8aefef1c575aab3764a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.fzzy.order;
 
import com.fzzy.api.entity.ApiConfs;
import com.fzzy.order.data.OrderData;
 
import java.text.ParseException;
 
/**
 * 根据协议解析指令
 *
 * @author czt
 */
public interface OrderApiService {
 
    /**
     * 获取协议编码
     *
     * @return
     */
    public String getProtocol();
 
    /**
     * 解析指令
     * @param req
     * @return
     * @throws Exception
     */
 
    public void execute(OrderData req, String orderType, ApiConfs apiConfs, String orderid) throws ParseException;
}