using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class EptOrderGetorderIdsbyqueryRequest : JdRequestBase { public Nullable orderStatus {get; set;} public Nullable locked {get; set;} public Nullable disputed {get; set;} public string bookTimeBegin {get; set;} public string bookTimeEnd {get; set;} public string userPin {get; set;} public Nullable startRow {get; set;} public override string ApiName { get{return "jingdong.ept.order.getorderIdsbyquery";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("orderStatus", this. orderStatus ); parameters.Add("locked", this. locked ); parameters.Add("disputed", this. disputed ); parameters.Add("bookTimeBegin", this. bookTimeBegin ); parameters.Add("bookTimeEnd", this. bookTimeEnd ); parameters.Add("userPin", this. userPin ); parameters.Add("startRow", this. startRow ); } } }