步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.1 KiB

3 years ago
using BBWY.Server.Model;
using BBWY.Server.Model.Dto;
using Microsoft.Extensions.Caching.Memory;
using Newtonsoft.Json.Linq;
using System;
using System.Collections.Generic;
namespace BBWY.Server.Business
{
public class PlatformSDKBusiness
{
protected IMemoryCache memoryCache;
protected TimeSpan expirationTimeSpan = TimeSpan.FromMinutes(60);
/// <summary>
/// 产品平台
/// </summary>
public virtual Enums.Platform Platform { get; }
public PlatformSDKBusiness(IMemoryCache memoryCache)
{
this.memoryCache = memoryCache;
}
public virtual ProductListResponse GetProductList(SearchProductRequest searchProductRequest)
{
throw new NotImplementedException();
}
public virtual IList<ProductSkuResponse> GetProductSkuList(SearchProductSkuRequest searchProductSkuRequest)
{
throw new NotImplementedException();
}
public virtual IList<SimpleProductSkuResponse> GetSimpleProductSkuList(SearchProductSkuRequest searchProductSkuRequest)
{
throw new NotImplementedException();
}
public virtual IList<JToken> GetOrderList(SearchPlatformOrderRequest searchOrderRequest)
{
throw new NotImplementedException();
}
public virtual VenderResponse GetVenderInfo(PlatformRequest platformRequest)
{
throw new NotImplementedException();
}
public virtual ConsigneeSimpleResponse DecryptConsignee(DecryptConsigneeRequest decryptConsigneeRequest)
{
throw new NotImplementedException();
}
public virtual void EditVenderRemark(EditVenderRemarkRequest editVenderRemarkRequest)
{
throw new NotImplementedException();
}
3 years ago
public virtual IList<LogisticsResponse> GetLogisticsList(PlatformRequest platformRequest)
{
throw new NotImplementedException();
}
public virtual void OutStock(OutStockRequest outStockRequest)
{
throw new NotImplementedException();
}
3 years ago
}
}