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.4 KiB
74 lines
3.4 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Jd.Api.Response;
|
||
|
using Jd.Api.Util;
|
||
|
namespace Jd.Api.Request
|
||
|
{
|
||
|
public class UeBizOrderJxfwJsfServiceManufacturerOrderServiceTimeUpdateRequest : JdRequestBase<UeBizOrderJxfwJsfServiceManufacturerOrderServiceTimeUpdateResponse>
|
||
|
{
|
||
|
public string
|
||
|
orderNo
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<DateTime>
|
||
|
bookStartTime
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<DateTime>
|
||
|
bookEndTime
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
appId
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<DateTime>
|
||
|
bookOperateDate
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
remark
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
bookBy
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
type
|
||
|
{get; set;}
|
||
|
|
||
|
public override string ApiName
|
||
|
{
|
||
|
get{return "jingdong.ue.bizOrderJxfwJsfService.manufacturerOrderServiceTimeUpdate";}
|
||
|
}
|
||
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
||
|
{
|
||
|
parameters.Add("orderNo", this. orderNo
|
||
|
);
|
||
|
parameters.Add("bookStartTime", this. bookStartTime
|
||
|
);
|
||
|
parameters.Add("bookEndTime", this. bookEndTime
|
||
|
);
|
||
|
parameters.Add("appId", this. appId
|
||
|
);
|
||
|
parameters.Add("bookOperateDate", this. bookOperateDate
|
||
|
);
|
||
|
parameters.Add("remark", this. remark
|
||
|
);
|
||
|
parameters.Add("bookBy", this. bookBy
|
||
|
);
|
||
|
parameters.Add("type", this. type
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|