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.
73 lines
3.4 KiB
73 lines
3.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class QuestionTypeCascadeProviderGetQuestionTypeCascadeRequest : JdRequestBase<QuestionTypeCascadeProviderGetQuestionTypeCascadeResponse>
|
|
{
|
|
public Nullable<int>
|
|
parentId
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
wareId
|
|
{get; set;}
|
|
|
|
public Nullable<int>
|
|
afsApplyId
|
|
{get; set;}
|
|
|
|
public string
|
|
operatorPin
|
|
{get; set;}
|
|
|
|
public string
|
|
operatorNick
|
|
{get; set;}
|
|
|
|
public string
|
|
operatorRemark
|
|
{get; set;}
|
|
|
|
public Nullable<DateTime>
|
|
operatorDate
|
|
{get; set;}
|
|
|
|
public string
|
|
platformSrc
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.QuestionTypeCascadeProvider.getQuestionTypeCascade";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("parentId", this. parentId
|
|
);
|
|
parameters.Add("wareId", this. wareId
|
|
);
|
|
parameters.Add("afsApplyId", this. afsApplyId
|
|
);
|
|
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
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|