czt
2025-03-18 451f8ceb451519c029a0bcd0373b7b493e6265fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.fzzy.order.ordersx2023;
 
import com.fzzy.api.entity.ApiConfs;
import com.fzzy.order.ordersx2023.data.OrderSxReq;
 
import java.text.ParseException;
 
/**
 * @Description 根据协议实现不同解析
 * @Author CZT
 * @Date 2024/4/23 11:33
 */
public interface OrderSxService {
 
    /**
     * 获取协议编码
     * @return
     */
    public String getProtocol();
 
    public void execute(OrderSxReq req, ApiConfs apiConfs) throws ParseException;
}