using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class DropshipDpsSearchRequest : JdRequestBase { public Nullable pageSize {get; set;} public Nullable page {get; set;} public Nullable beginDate {get; set;} public Nullable endDate {get; set;} public Nullable modifiedBeginDate {get; set;} public Nullable modifiedEndDate {get; set;} public override string ApiName { get{return "jingdong.dropship.dps.search";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("pageSize", this. pageSize ); parameters.Add("page", this. page ); parameters.Add("beginDate", this. beginDate ); parameters.Add("endDate", this. endDate ); parameters.Add("modifiedBeginDate", this. modifiedBeginDate ); parameters.Add("modifiedEndDate", this. modifiedEndDate ); } } }