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.
24 lines
958 B
24 lines
958 B
2 years ago
|
using BBWYB.Common.Http;
|
||
|
using QuanTan.SDK.Model;
|
||
|
using QuanTan.SDK.Models.Supplier;
|
||
|
|
||
|
namespace QuanTan.SDK.Client.Supplier
|
||
|
{
|
||
|
public class QuanTan_Supplier_ProductClient : BaseClient
|
||
|
{
|
||
|
public QuanTan_Supplier_ProductClient(RestApiService restApiService) : base(restApiService)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public QuanTanResponse<QuanTan_Supplier_ProductListResponse> GetProductList(QuanTan_Supplier_SearchSpuRequest request, string appId, string appSecret)
|
||
|
{
|
||
|
return SendRequest<QuanTan_Supplier_ProductListResponse>("api/platform/supply/product/spu", request, appId, appSecret);
|
||
|
}
|
||
|
|
||
|
public QuanTanResponse<QuanTan_Supplier_ProductSkuListResponse> GetProductSkuList(QuanTan_Supplier_SearchSkuRequest request, string appId, string appSecret)
|
||
|
{
|
||
|
return SendRequest<QuanTan_Supplier_ProductSkuListResponse>("api/platform/supply/product/list", request, appId, appSecret);
|
||
|
}
|
||
|
}
|
||
|
}
|