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;
|
}
|