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

73 lines
1.3 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 TwoOrderItemVO:JdObject{
[JsonProperty("twoOrderId")]
public long
twoOrderId
{ get; set; }
[JsonProperty("oneOrderId")]
public long
oneOrderId
{ get; set; }
[JsonProperty("skuId")]
public long
skuId
{ get; set; }
[JsonProperty("skuName")]
public string
skuName
{ get; set; }
[JsonProperty("skuTotal")]
public int
skuTotal
{ get; set; }
[JsonProperty("jysSkuLength")]
public int
jysSkuLength
{ get; set; }
[JsonProperty("jysSkuWidth")]
public int
jysSkuWidth
{ get; set; }
[JsonProperty("jysSkuHeight")]
public int
jysSkuHeight
{ get; set; }
[JsonProperty("actualWeight")]
public long
actualWeight
{ get; set; }
[JsonProperty("billingWeight")]
public long
billingWeight
{ get; set; }
[JsonProperty("skuPrice")]
public long
skuPrice
{ get; set; }
[JsonProperty("extStr")]
public string
extStr
{ get; set; }
}
}