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

62 lines
2.7 KiB

3 years ago
using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class PromotionDirectUpdateSkuPriceRequest : JdRequestBase<PromotionDirectUpdateSkuPriceResponse>
{
public Nullable<int>
site
{get; set;}
public Nullable<int>
lpType
{get; set;}
public string
lineationPrice
{get; set;}
public string
lpUrl
{get; set;}
public Nullable<long>
skuId
{get; set;}
public string
applicant
{get; set;}
public override string ApiName
{
get{return "jingdong.promotion.directUpdateSkuPrice";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("site", this. site
);
parameters.Add("lpType", this. lpType
);
parameters.Add("lineationPrice", this. lineationPrice
);
parameters.Add("lpUrl", this. lpUrl
);
parameters.Add("skuId", this. skuId
);
parameters.Add("applicant", this. applicant
);
}
}
}