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
1.1 KiB
62 lines
1.1 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 WayBillDto:JdObject{
|
|
[JsonProperty("shipId")]
|
|
public string
|
|
|
|
shipId
|
|
{ get; set; }
|
|
[JsonProperty("thirdId")]
|
|
public int
|
|
|
|
thirdId
|
|
{ get; set; }
|
|
[JsonProperty("thirdName")]
|
|
public string
|
|
|
|
thirdName
|
|
{ get; set; }
|
|
[JsonProperty("status")]
|
|
public int
|
|
|
|
status
|
|
{ get; set; }
|
|
[JsonProperty("createDate")]
|
|
public DateTime
|
|
|
|
createDate
|
|
{ get; set; }
|
|
[JsonProperty("updateDate")]
|
|
public DateTime
|
|
|
|
updateDate
|
|
{ get; set; }
|
|
[JsonProperty("flagOrderType")]
|
|
public int
|
|
|
|
flagOrderType
|
|
{ get; set; }
|
|
[JsonProperty("listTrace")]
|
|
public List<string>
|
|
|
|
listTrace
|
|
{ get; set; }
|
|
[JsonProperty("businessCode")]
|
|
public string
|
|
|
|
businessCode
|
|
{ get; set; }
|
|
[JsonProperty("abroadFlag")]
|
|
public int
|
|
|
|
abroadFlag
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|