using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class DropshipDpsSearchpreRequest : JdRequestBase { public Nullable pageSize {get; set;} public Nullable page {get; set;} public Nullable beginDate {get; set;} public Nullable endDate {get; set;} public override string ApiName { get{return "jingdong.dropship.dps.searchpre";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("pageSize", this. pageSize ); parameters.Add("page", this. page ); parameters.Add("beginDate", this. beginDate ); parameters.Add("endDate", this. endDate ); } } }