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.
67 lines
7.9 KiB
67 lines
7.9 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class VcItemPrimaryPicUpdateRequest : JdRequestBase<VcItemPrimaryPicUpdateResponse>
|
|
{
|
|
public string
|
|
applyId
|
|
{get; set;}
|
|
|
|
public string
|
|
skuId {get; set; }
|
|
public string
|
|
imageList {get; set; }
|
|
public string
|
|
skuIdLong {get; set; }
|
|
public string
|
|
imageListLong {get; set; }
|
|
public string
|
|
skuIdLucency {get; set; }
|
|
public string
|
|
imageListLucency {get; set; }
|
|
public Nullable<int>
|
|
isPublishSchedule
|
|
{get; set;}
|
|
|
|
public Nullable<DateTime>
|
|
publishTime
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.vc.item.primaryPic.update";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("apply_id", this. applyId
|
|
);
|
|
parameters.Add("sku_id", this. skuId
|
|
);
|
|
parameters.Add("image_list", this. imageList
|
|
);
|
|
parameters.Add("sku_id_long", this. skuIdLong
|
|
);
|
|
parameters.Add("image_list_long", this. imageListLong
|
|
);
|
|
parameters.Add("sku_id_lucency", this. skuIdLucency
|
|
);
|
|
parameters.Add("image_list_lucency", this. imageListLucency
|
|
);
|
|
parameters.Add("is_publishSchedule", this. isPublishSchedule
|
|
);
|
|
parameters.Add("publish_time", this. publishTime
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|