using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class PopLocBroadbandOrderFindPageRequest : JdRequestBase { public string orderCreatedBegin {get; set;} public string orderCreatedEnd {get; set;} public Nullable orderStatus {get; set;} public Nullable page {get; set;} public Nullable pageSize {get; set;} public override string ApiName { get{return "jingdong.pop.loc.broadband.order.findPage";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("order_created_begin", this. orderCreatedBegin ); parameters.Add("order_created_end", this. orderCreatedEnd ); parameters.Add("order_status", this. orderStatus ); parameters.Add("page", this. page ); parameters.Add("page_size", this. pageSize ); } } }