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.
17 lines
581 B
17 lines
581 B
using BBWYB.Common.Http;
|
|
using QuanTan.SDK.Model;
|
|
using QuanTan.SDK.Models.Buyer;
|
|
namespace QuanTan.SDK.Client
|
|
{
|
|
public class QuanTan_Buyer_ProductClient : BaseClient
|
|
{
|
|
public QuanTan_Buyer_ProductClient(RestApiService restApiService) : base(restApiService)
|
|
{
|
|
}
|
|
|
|
public QuanTanResponse<QuanTan_Buyer_ProductResponse> GetProductInfo(string productId, string appId, string appSecret)
|
|
{
|
|
return SendRequest<QuanTan_Buyer_ProductResponse>($"api/platform/product/spu/{productId}", null, appId, appSecret);
|
|
}
|
|
}
|
|
}
|
|
|