using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class B2bGxptServiceErpServiceQueryServiceListRequest : JdRequestBase { public Nullable applyStartDate {get; set;} public Nullable purchaseId {get; set;} public Nullable orderStatus {get; set;} public Nullable pageSize {get; set;} public Nullable applyEndDate {get; set;} public Nullable type {get; set;} public Nullable submitEndDate {get; set;} public Nullable pageIndex {get; set;} public Nullable serviceStatus {get; set;} public Nullable submitStartDate {get; set;} public Nullable serviceId {get; set;} public Nullable saleServiceType {get; set;} public Nullable startModified {get; set;} public Nullable endModified {get; set;} public override string ApiName { get{return "jingdong.b2b.gxpt.serviceErpService.queryServiceList";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("applyStartDate", this. applyStartDate ); parameters.Add("purchaseId", this. purchaseId ); parameters.Add("orderStatus", this. orderStatus ); parameters.Add("pageSize", this. pageSize ); parameters.Add("applyEndDate", this. applyEndDate ); parameters.Add("type", this. type ); parameters.Add("submitEndDate", this. submitEndDate ); parameters.Add("pageIndex", this. pageIndex ); parameters.Add("serviceStatus", this. serviceStatus ); parameters.Add("submitStartDate", this. submitStartDate ); parameters.Add("serviceId", this. serviceId ); parameters.Add("saleServiceType", this. saleServiceType ); parameters.Add("startModified", this. startModified ); parameters.Add("endModified", this. endModified ); } } }