using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class EclpRtwQueryRtwRequest : JdRequestBase { 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 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 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 ); } } }