using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class EclpOrderQueryOrderListRequest : JdRequestBase { public string deptNo {get; set;} public string startDate {get; set;} public string endDate {get; set;} public string shopNo {get; set;} public string warehouseNo {get; set;} public string pageNo {get; set;} public string pageSize {get; set;} public string salePlatformOrderNo {get; set;} public Nullable orderStatus {get; set;} public override string ApiName { get{return "jingdong.eclp.order.queryOrderList";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("deptNo", this. deptNo ); parameters.Add("startDate", this. startDate ); parameters.Add("endDate", this. endDate ); parameters.Add("shopNo", this. shopNo ); parameters.Add("warehouseNo", this. warehouseNo ); parameters.Add("pageNo", this. pageNo ); parameters.Add("pageSize", this. pageSize ); parameters.Add("salePlatformOrderNo", this. salePlatformOrderNo ); parameters.Add("orderStatus", this. orderStatus ); } } }