using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class OmnicOrderShipinfoSearchRequest : JdRequestBase { public Nullable dateType {get; set;} public Nullable orderId {get; set;} public Nullable endDate {get; set;} public Nullable pageSize {get; set;} public Nullable currentPage {get; set;} public string fieldList {get; set; } public Nullable startDate {get; set;} public Nullable status {get; set;} public override string ApiName { get{return "jingdong.omnic.order.shipinfo.search";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("dateType", this. dateType ); parameters.Add("orderId", this. orderId ); parameters.Add("endDate", this. endDate ); parameters.Add("pageSize", this. pageSize ); parameters.Add("currentPage", this. currentPage ); parameters.Add("fieldList", this. fieldList ); parameters.Add("startDate", this. startDate ); parameters.Add("status", this. status ); } } }