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.
74 lines
3.7 KiB
74 lines
3.7 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Jd.Api.Response;
|
||
|
using Jd.Api.Util;
|
||
|
namespace Jd.Api.Request
|
||
|
{
|
||
|
public class ComJdDdOpenGwApiDataServiceRequest : JdRequestBase<ComJdDdOpenGwApiDataServiceResponse>
|
||
|
{
|
||
|
public string
|
||
|
accessid
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
aspid
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
accessToken
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
version
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
bizTimestamp
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
appid
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
reqType
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
jsonParam
|
||
|
{get; set;}
|
||
|
|
||
|
public override string ApiName
|
||
|
{
|
||
|
get{return "jingdong.com.jd.dd.open.gw.api.DataService";}
|
||
|
}
|
||
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
||
|
{
|
||
|
parameters.Add("accessid", this. accessid
|
||
|
);
|
||
|
parameters.Add("aspid", this. aspid
|
||
|
);
|
||
|
parameters.Add("accessToken", this. accessToken
|
||
|
);
|
||
|
parameters.Add("version", this. version
|
||
|
);
|
||
|
parameters.Add("biz_timestamp", this. bizTimestamp
|
||
|
);
|
||
|
parameters.Add("appid", this. appid
|
||
|
);
|
||
|
parameters.Add("reqType", this. reqType
|
||
|
);
|
||
|
parameters.Add("jsonParam", this. jsonParam
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|