步步为盈
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.

79 lines
4.9 KiB

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class VcItemPrimaryPicAppliesFindRequest : JdRequestBase<VcItemPrimaryPicAppliesFindResponse>
{
public string
wareId
{get; set;}
public string
name
{get; set;}
public Nullable<int>
brandId
{get; set;}
public Nullable<int>
categoryId
{get; set;}
public Nullable<int>
state
{get; set;}
public string
beginApplyTime
{get; set;}
public string
endApplyTime
{get; set;}
public string
page
{get; set;}
public string
length
{get; set;}
public override string ApiName
{
get{return "jingdong.vc.item.primaryPic.applies.find";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("ware_id", this. wareId
);
parameters.Add("name", this. name
);
parameters.Add("brand_id", this. brandId
);
parameters.Add("category_id", this. categoryId
);
parameters.Add("state", this. state
);
parameters.Add("begin_apply_time", this. beginApplyTime
);
parameters.Add("end_apply_time", this. endApplyTime
);
parameters.Add("page", this. page
);
parameters.Add("length", this. length
);
}
}
}