步步为盈
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.

61 lines
2.8 KiB

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class EclpCloudQueryOrderInfoRequest : JdRequestBase<EclpCloudQueryOrderInfoResponse>
{
public string
machiningNo
{get; set;}
public string
machiningType
{get; set;}
public Nullable<DateTime>
timeStart
{get; set;}
public Nullable<DateTime>
timeEnd
{get; set;}
public string
warehouseNo
{get; set;}
public string
tenantId
{get; set;}
public override string ApiName
{
get{return "jingdong.eclp.cloud.queryOrderInfo";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("machiningNo", this. machiningNo
);
parameters.Add("machiningType", this. machiningType
);
parameters.Add("timeStart", this. timeStart
);
parameters.Add("timeEnd", this. timeEnd
);
parameters.Add("warehouseNo", this. warehouseNo
);
parameters.Add("tenantId", this. tenantId
);
}
}
}