步步为盈
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
4.7 KiB

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class AscBizFetchRequest : JdRequestBase<AscBizFetchResponse>
{
public string
buId
{get; set;}
public Nullable<long>
afsServiceId
{get; set;}
public Nullable<int>
fetchType
{get; set;}
public Nullable<long>
afsApplyId
{get; set;}
public Nullable<int>
fetchNum
{get; set;}
public Nullable<int>
fetchDimension
{get; set;}
public string
operatorPin
{get; set;}
public string
operatorNick
{get; set;}
public string
operatorRemark
{get; set;}
public Nullable<DateTime>
operatorDate
{get; set;}
public Nullable<int>
platformSrc
{get; set;}
public override string ApiName
{
get{return "jingdong.asc.biz.fetch";}
}
protected override void PrepareParam(IDictionary<String, Object> 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
);
}
}
}