using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class AfsserviceAlltaskGetRequest : JdRequestBase { public Nullable afsServiceId {get; set;} public string pageNumber {get; set;} public string pageSize {get; set;} public string customerPin {get; set;} public Nullable orderId {get; set;} public Nullable afsApplyTimeBegin {get; set;} public Nullable afsApplyTimeEnd {get; set;} public Nullable approvedDateBegin {get; set;} public Nullable approvedDateEnd {get; set;} public override string ApiName { get{return "jingdong.afsservice.alltask.get";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("afsServiceId", this. afsServiceId ); parameters.Add("pageNumber", this. pageNumber ); parameters.Add("pageSize", this. pageSize ); parameters.Add("customerPin", this. customerPin ); parameters.Add("orderId", this. orderId ); parameters.Add("afsApplyTimeBegin", this. afsApplyTimeBegin ); parameters.Add("afsApplyTimeEnd", this. afsApplyTimeEnd ); parameters.Add("approvedDateBegin", this. approvedDateBegin ); parameters.Add("approvedDateEnd", this. approvedDateEnd ); } } }