步步为盈
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.

118 lines
2.0 KiB

3 years ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
using Jd.Api.Domain;
namespace Jd.Api.Domain
{
[Serializable]
public class OrderVO:JdObject{
[JsonProperty("orderId")]
public long
orderId
{ get; set; }
[JsonProperty("endDate")]
public DateTime
endDate
{ get; set; }
[JsonProperty("itemCode")]
public string
itemCode
{ get; set; }
[JsonProperty("itemName")]
public string
itemName
{ get; set; }
[JsonProperty("articleType")]
public int
articleType
{ get; set; }
[JsonProperty("erpOrderId")]
public long
erpOrderId
{ get; set; }
[JsonProperty("totalRealpayPrice")]
public long
totalRealpayPrice
{ get; set; }
[JsonProperty("skuId")]
public long
skuId
{ get; set; }
[JsonProperty("fwsPin")]
public string
fwsPin
{ get; set; }
[JsonProperty("tpOrderId")]
public long
tpOrderId
{ get; set; }
[JsonProperty("nickName")]
public string
nickName
{ get; set; }
[JsonProperty("created")]
public DateTime
created
{ get; set; }
[JsonProperty("buyer")]
public string
buyer
{ get; set; }
[JsonProperty("orderCycle")]
public int
orderCycle
{ get; set; }
[JsonProperty("orderDate")]
public DateTime
orderDate
{ get; set; }
[JsonProperty("startDate")]
public DateTime
startDate
{ get; set; }
[JsonProperty("serviceCode")]
public string
serviceCode
{ get; set; }
[JsonProperty("orderStatus")]
public int
orderStatus
{ get; set; }
[JsonProperty("orderNum")]
public int
orderNum
{ get; set; }
[JsonProperty("childBuyer")]
public string
childBuyer
{ get; set; }
[JsonProperty("serviceName")]
public string
serviceName
{ get; set; }
}
}