using BBWYB.Common.Http;
using SDKAdapter.PurchasePlatform.Models;
namespace SDKAdapter.PurchasePlatform.Client
{
public class PP_PlatformClient
{
protected RestApiService restApiService { get; private set; }
public virtual AdapterEnums.PlatformType Platform { get; }
public PP_PlatformClient(RestApiService restApiService)
{
this.restApiService = restApiService;
}
///
/// 预览订单
///
///
///
///
public virtual PP_PreviewOrderResponse PreviewOrder(PP_PreviewOrderRequest request)
{
throw new NotImplementedException();
}
///
/// 创建订单
///
///
///
///
public virtual PP_CreateOrderResponse CreateOrder(PP_CreateOrderRequest request)
{
throw new NotImplementedException();
}
///
/// 查询订单详情
///
///
///
///
public virtual PP_QueryOrderDetailResponse QueryOrderDetail(PP_QueryOrderDetailRequest request)
{
throw new NotImplementedException();
}
///
/// 查询订单物流信息
///
///
///
///
public virtual IList QueryOrderLogistics(PP_QueryOrderLogisticsRequest request)
{
throw new NotImplementedException();
}
}
}