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

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class EclpRtwTransportRtwRequest : JdRequestBase<EclpRtwTransportRtwResponse>
{
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 string
customField
{get; set;}
public override string ApiName
{
get{return "jingdong.eclp.rtw.transportRtw";}
}
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("customField", this. customField
);
}
}
}