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.
85 lines
4.1 KiB
85 lines
4.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class B2bOpenApiGXProductProviderQueryProductRequest : JdRequestBase<B2bOpenApiGXProductProviderQueryProductResponse>
|
|
{
|
|
public Nullable<long>
|
|
jdSkuId
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
jdSpuId
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
venderId
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
pageSize
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
thirdCategoryId
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
pageIndex
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
brandId
|
|
{get; set;}
|
|
|
|
public string
|
|
name
|
|
{get; set;}
|
|
|
|
public string
|
|
consumerSkuId
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
status
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.b2b.open.api.GXProductProvider.queryProduct";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("jdSkuId", this. jdSkuId
|
|
);
|
|
parameters.Add("jdSpuId", this. jdSpuId
|
|
);
|
|
parameters.Add("venderId", this. venderId
|
|
);
|
|
parameters.Add("pageSize", this. pageSize
|
|
);
|
|
parameters.Add("thirdCategoryId", this. thirdCategoryId
|
|
);
|
|
parameters.Add("pageIndex", this. pageIndex
|
|
);
|
|
parameters.Add("brandId", this. brandId
|
|
);
|
|
parameters.Add("name", this. name
|
|
);
|
|
parameters.Add("consumerSkuId", this. consumerSkuId
|
|
);
|
|
parameters.Add("status", this. status
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|