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

98 lines
2.0 KiB

3 years ago
using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class SellerPromotionV2CountRequest : JdRequestBase<SellerPromotionV2CountResponse>
{
3 years ago
public string
ip
{ get; set; }
public string
port
{ get; set; }
public Nullable<long>
promoId
{ get; set; }
public string
name
{ get; set; }
public Nullable<int>
type
{ get; set; }
public Nullable<int>
favorMode
{ get; set; }
public string
beginTime
{ get; set; }
public string
endTime
{ get; set; }
public Nullable<int>
promoStatus
{ get; set; }
public Nullable<long>
wareId
{ get; set; }
public Nullable<long>
skuId
{ get; set; }
public Nullable<int>
srcType
{ get; set; }
public override string ApiName
{
get { return "jingdong.seller.promotion.v2.count"; }
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("ip", this.ip
3 years ago
);
3 years ago
parameters.Add("port", this.port
3 years ago
);
3 years ago
parameters.Add("promo_id", this.promoId
3 years ago
);
3 years ago
parameters.Add("name", this.name
3 years ago
);
3 years ago
parameters.Add("type", this.type
3 years ago
);
3 years ago
parameters.Add("favor_mode", this.favorMode
3 years ago
);
3 years ago
parameters.Add("begin_time", this.beginTime
3 years ago
);
3 years ago
parameters.Add("end_time", this.endTime
3 years ago
);
3 years ago
parameters.Add("promo_status", this.promoStatus
3 years ago
);
3 years ago
parameters.Add("ware_id", this.wareId
3 years ago
);
3 years ago
parameters.Add("sku_id", this.skuId
3 years ago
);
3 years ago
parameters.Add("src_type", this.srcType
3 years ago
);
3 years ago
}
3 years ago
}
}
3 years ago
3 years ago