using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class LdopAlphaProviderAutoRecycleDetailRequest : JdRequestBase { public string providerCode {get; set;} public Nullable startTime {get; set;} public Nullable endTime {get; set;} public Nullable page {get; set;} public Nullable pageSize {get; set;} public override string ApiName { get{return "jingdong.ldop.alpha.provider.autoRecycleDetail";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("providerCode", this. providerCode ); parameters.Add("startTime", this. startTime ); parameters.Add("endTime", this. endTime ); parameters.Add("page", this. page ); parameters.Add("pageSize", this. pageSize ); } } }