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.
102 lines
1.9 KiB
102 lines
1.9 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
using Jd.Api.Domain;
|
|
namespace Jd.Api.Domain
|
|
{
|
|
|
|
[Serializable]
|
|
public class OneOrderVO:JdObject{
|
|
[JsonProperty("oneOrderId")]
|
|
public long
|
|
|
|
oneOrderId
|
|
{ get; set; }
|
|
[JsonProperty("orderTime")]
|
|
public DateTime
|
|
|
|
orderTime
|
|
{ get; set; }
|
|
[JsonProperty("updateTime")]
|
|
public DateTime
|
|
|
|
updateTime
|
|
{ get; set; }
|
|
[JsonProperty("orderStatus")]
|
|
public int
|
|
|
|
orderStatus
|
|
{ get; set; }
|
|
[JsonProperty("waybillNumber")]
|
|
public string
|
|
|
|
waybillNumber
|
|
{ get; set; }
|
|
[JsonProperty("destCountryName")]
|
|
public string
|
|
|
|
destCountryName
|
|
{ get; set; }
|
|
[JsonProperty("consigneeName")]
|
|
public string
|
|
|
|
consigneeName
|
|
{ get; set; }
|
|
[JsonProperty("consigneeAddress")]
|
|
public string
|
|
|
|
consigneeAddress
|
|
{ get; set; }
|
|
[JsonProperty("consigneePhone")]
|
|
public string
|
|
|
|
consigneePhone
|
|
{ get; set; }
|
|
[JsonProperty("consigneeEmail")]
|
|
public string
|
|
|
|
consigneeEmail
|
|
{ get; set; }
|
|
[JsonProperty("zipCode")]
|
|
public string
|
|
|
|
zipCode
|
|
{ get; set; }
|
|
[JsonProperty("pin")]
|
|
public string
|
|
|
|
pin
|
|
{ get; set; }
|
|
[JsonProperty("extStr")]
|
|
public string
|
|
|
|
extStr
|
|
{ get; set; }
|
|
[JsonProperty("oneOrderItems")]
|
|
public OneOrderItemVO[]
|
|
|
|
oneOrderItems
|
|
{ get; set; }
|
|
[JsonProperty("consolidatorServiceCode")]
|
|
public string
|
|
|
|
consolidatorServiceCode
|
|
{ get; set; }
|
|
[JsonProperty("consolidatorServiceName")]
|
|
public string
|
|
|
|
consolidatorServiceName
|
|
{ get; set; }
|
|
[JsonProperty("idPickSite")]
|
|
public long
|
|
|
|
idPickSite
|
|
{ get; set; }
|
|
[JsonProperty("idPickSiteName")]
|
|
public string
|
|
|
|
idPickSiteName
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|