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.
85 lines
4.1 KiB
85 lines
4.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class EclpRtwQueryRtwRequest : JdRequestBase<EclpRtwQueryRtwResponse>
|
|
{
|
|
public string
|
|
eclpSoNo
|
|
{get; set;}
|
|
|
|
public string
|
|
eclpRtwNo
|
|
{get; set;}
|
|
|
|
public string
|
|
isvRtwNum
|
|
{get; set;}
|
|
|
|
public string
|
|
warehouseNo
|
|
{get; set;}
|
|
|
|
public string
|
|
reson
|
|
{get; set;}
|
|
|
|
public string
|
|
orderInType
|
|
{get; set;}
|
|
|
|
public Nullable<bool>
|
|
queryBatAttrFlag
|
|
{get; set;}
|
|
|
|
public string
|
|
startCreateTime
|
|
{get; set;}
|
|
|
|
public string
|
|
endCreateTime
|
|
{get; set;}
|
|
|
|
public string
|
|
outStoreNo
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.eclp.rtw.queryRtw";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("eclpSoNo", this. eclpSoNo
|
|
);
|
|
parameters.Add("eclpRtwNo", this. eclpRtwNo
|
|
);
|
|
parameters.Add("isvRtwNum", this. isvRtwNum
|
|
);
|
|
parameters.Add("warehouseNo", this. warehouseNo
|
|
);
|
|
parameters.Add("reson", this. reson
|
|
);
|
|
parameters.Add("orderInType", this. orderInType
|
|
);
|
|
parameters.Add("queryBatAttrFlag", this. queryBatAttrFlag
|
|
);
|
|
parameters.Add("startCreateTime", this. startCreateTime
|
|
);
|
|
parameters.Add("endCreateTime", this. endCreateTime
|
|
);
|
|
parameters.Add("outStoreNo", this. outStoreNo
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|