using DkSdkCore.Response;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace DkSdkCore.Request
|
{
|
public class TkGetOpGoodListRequest : BaseDkRequest<TkGetGoodsListResponse>
|
{
|
public string pageId { get; set; }
|
|
public string pageSize { get; set; }
|
|
/// <summary>
|
/// 9.9精选的类目id,分类id请求详情:-1:精选,1 :3.9元区,2 :9.9元区,3 :19.9元区
|
/// </summary>
|
public string nineCid { get; set; }
|
|
public override string GetUrl()
|
{
|
return "https://openapi.dataoke.com/api/goods/nine/op-goods-list";
|
}
|
|
public override ApiParameters GetParameters()
|
{
|
ApiParameters apiParameters = new ApiParameters();
|
apiParameters.Add("pageId", this.pageId);
|
apiParameters.Add("pageSize", this.pageSize);
|
apiParameters.Add("cids", this.nineCid);
|
return apiParameters;
|
}
|
}
|
}
|