You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
3.1 KiB
67 lines
3.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class EptOrderGetorderIdsbyqueryRequest : JdRequestBase<EptOrderGetorderIdsbyqueryResponse>
|
|
{
|
|
public Nullable<int>
|
|
orderStatus
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
locked
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
disputed
|
|
{get; set;}
|
|
|
|
public string
|
|
bookTimeBegin
|
|
{get; set;}
|
|
|
|
public string
|
|
bookTimeEnd
|
|
{get; set;}
|
|
|
|
public string
|
|
userPin
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
startRow
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.ept.order.getorderIdsbyquery";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> 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
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|