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.
62 lines
2.7 KiB
62 lines
2.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 SendFactoryAbutmentReceiveInfoRequest : JdRequestBase<SendFactoryAbutmentReceiveInfoResponse>
|
||
|
{
|
||
|
public string
|
||
|
authorizedSequence
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<int>
|
||
|
serviceType
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
orderno
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<DateTime>
|
||
|
disposeTime
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<int>
|
||
|
disposeResult
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
remark
|
||
|
{get; set;}
|
||
|
|
||
|
public override string ApiName
|
||
|
{
|
||
|
get{return "jingdong.sendFactoryAbutmentReceiveInfo";}
|
||
|
}
|
||
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
||
|
{
|
||
|
parameters.Add("authorizedSequence", this. authorizedSequence
|
||
|
);
|
||
|
parameters.Add("serviceType", this. serviceType
|
||
|
);
|
||
|
parameters.Add("orderno", this. orderno
|
||
|
);
|
||
|
parameters.Add("disposeTime", this. disposeTime
|
||
|
);
|
||
|
parameters.Add("disposeResult", this. disposeResult
|
||
|
);
|
||
|
parameters.Add("remark", this. remark
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|