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.
115 lines
8.1 KiB
115 lines
8.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class SellerPromotionV2ListRequest : JdRequestBase<SellerPromotionV2ListResponse>
|
|
{
|
|
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 string
|
|
page
|
|
{get; set;}
|
|
|
|
public string
|
|
pageSSize
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
srcType
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
startId
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.seller.promotion.v2.list";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("ip", this. ip
|
|
);
|
|
parameters.Add("port", this. port
|
|
);
|
|
parameters.Add("promo_id", this. promoId
|
|
);
|
|
parameters.Add("name", this. name
|
|
);
|
|
parameters.Add("type", this. type
|
|
);
|
|
parameters.Add("favor_mode", this. favorMode
|
|
);
|
|
parameters.Add("begin_time", this. beginTime
|
|
);
|
|
parameters.Add("end_time", this. endTime
|
|
);
|
|
parameters.Add("promo_status", this. promoStatus
|
|
);
|
|
parameters.Add("ware_id", this. wareId
|
|
);
|
|
parameters.Add("sku_id", this. skuId
|
|
);
|
|
parameters.Add("page", this. page
|
|
);
|
|
parameters.Add("pageS_size", this. pageSSize
|
|
);
|
|
parameters.Add("src_type", this. srcType
|
|
);
|
|
parameters.Add("start_id", this. startId
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|