using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class AscBizFetchRequest : JdRequestBase { public string buId {get; set;} public Nullable afsServiceId {get; set;} public Nullable fetchType {get; set;} public Nullable afsApplyId {get; set;} public Nullable fetchNum {get; set;} public Nullable fetchDimension {get; set;} public string operatorPin {get; set;} public string operatorNick {get; set;} public string operatorRemark {get; set;} public Nullable operatorDate {get; set;} public Nullable platformSrc {get; set;} public override string ApiName { get{return "jingdong.asc.biz.fetch";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("buId", this. buId ); parameters.Add("afsServiceId", this. afsServiceId ); parameters.Add("fetchType", this. fetchType ); parameters.Add("afsApplyId", this. afsApplyId ); parameters.Add("fetchNum", this. fetchNum ); parameters.Add("fetchDimension", this. fetchDimension ); parameters.Add("operatorPin", this. operatorPin ); parameters.Add("operatorNick", this. operatorNick ); parameters.Add("operatorRemark", this. operatorRemark ); parameters.Add("operatorDate", this. operatorDate ); parameters.Add("platformSrc", this. platformSrc ); } } }