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.
121 lines
5.7 KiB
121 lines
5.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class UeTelnetOrderDoFinishRequest : JdRequestBase<UeTelnetOrderDoFinishResponse>
|
|
{
|
|
public string
|
|
orderNo
|
|
{get; set;}
|
|
|
|
public string
|
|
createBy
|
|
{get; set;}
|
|
|
|
public string
|
|
pic10
|
|
{get; set;}
|
|
|
|
public string
|
|
pic1
|
|
{get; set;}
|
|
|
|
public string
|
|
appId
|
|
{get; set;}
|
|
|
|
public string
|
|
pic6
|
|
{get; set;}
|
|
|
|
public string
|
|
pic7
|
|
{get; set;}
|
|
|
|
public string
|
|
pic8
|
|
{get; set;}
|
|
|
|
public string
|
|
pic9
|
|
{get; set;}
|
|
|
|
public string
|
|
dealResult
|
|
{get; set;}
|
|
|
|
public string
|
|
pic2
|
|
{get; set;}
|
|
|
|
public string
|
|
operateDate
|
|
{get; set;}
|
|
|
|
public string
|
|
pic3
|
|
{get; set;}
|
|
|
|
public string
|
|
dealRemark
|
|
{get; set;}
|
|
|
|
public string
|
|
pic4
|
|
{get; set;}
|
|
|
|
public string
|
|
pic5
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.ue.telnetOrder.doFinish";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("orderNo", this. orderNo
|
|
);
|
|
parameters.Add("createBy", this. createBy
|
|
);
|
|
parameters.Add("pic10", this. pic10
|
|
);
|
|
parameters.Add("pic1", this. pic1
|
|
);
|
|
parameters.Add("appId", this. appId
|
|
);
|
|
parameters.Add("pic6", this. pic6
|
|
);
|
|
parameters.Add("pic7", this. pic7
|
|
);
|
|
parameters.Add("pic8", this. pic8
|
|
);
|
|
parameters.Add("pic9", this. pic9
|
|
);
|
|
parameters.Add("dealResult", this. dealResult
|
|
);
|
|
parameters.Add("pic2", this. pic2
|
|
);
|
|
parameters.Add("operateDate", this. operateDate
|
|
);
|
|
parameters.Add("pic3", this. pic3
|
|
);
|
|
parameters.Add("dealRemark", this. dealRemark
|
|
);
|
|
parameters.Add("pic4", this. pic4
|
|
);
|
|
parameters.Add("pic5", this. pic5
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|