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.
138 lines
2.4 KiB
138 lines
2.4 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 QueryOrderListSkuJos:JdObject{
|
||
|
[JsonProperty("skuId")]
|
||
|
public long[]
|
||
|
|
||
|
skuId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("wareId")]
|
||
|
public long
|
||
|
|
||
|
wareId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("title")]
|
||
|
public string
|
||
|
|
||
|
title
|
||
|
{ get; set; }
|
||
|
[JsonProperty("imgUrl")]
|
||
|
public string
|
||
|
|
||
|
imgUrl
|
||
|
{ get; set; }
|
||
|
[JsonProperty("processDays")]
|
||
|
public int
|
||
|
|
||
|
processDays
|
||
|
{ get; set; }
|
||
|
[JsonProperty("stock")]
|
||
|
public int[]
|
||
|
|
||
|
stock
|
||
|
{ get; set; }
|
||
|
[JsonProperty("weight")]
|
||
|
public int
|
||
|
|
||
|
weight
|
||
|
{ get; set; }
|
||
|
[JsonProperty("quantity")]
|
||
|
public int[]
|
||
|
|
||
|
quantity
|
||
|
{ get; set; }
|
||
|
[JsonProperty("costPriceBuy")]
|
||
|
public string
|
||
|
|
||
|
costPriceBuy
|
||
|
{ get; set; }
|
||
|
[JsonProperty("jdPriceBuy")]
|
||
|
public string
|
||
|
|
||
|
jdPriceBuy
|
||
|
{ get; set; }
|
||
|
[JsonProperty("rfId")]
|
||
|
public string
|
||
|
|
||
|
rfId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promDisBuy")]
|
||
|
public string
|
||
|
|
||
|
promDisBuy
|
||
|
{ get; set; }
|
||
|
[JsonProperty("couponDisBuy")]
|
||
|
public string
|
||
|
|
||
|
couponDisBuy
|
||
|
{ get; set; }
|
||
|
[JsonProperty("inPrice")]
|
||
|
public string
|
||
|
|
||
|
inPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("customs")]
|
||
|
public string
|
||
|
|
||
|
customs
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promType")]
|
||
|
public int[]
|
||
|
|
||
|
promType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promUrl")]
|
||
|
public string
|
||
|
|
||
|
promUrl
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promName")]
|
||
|
public string
|
||
|
|
||
|
promName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promCategory")]
|
||
|
public string
|
||
|
|
||
|
promCategory
|
||
|
{ get; set; }
|
||
|
[JsonProperty("carrierCode")]
|
||
|
public int
|
||
|
|
||
|
carrierCode
|
||
|
{ get; set; }
|
||
|
[JsonProperty("carrierName")]
|
||
|
public string
|
||
|
|
||
|
carrierName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("arrivedDays")]
|
||
|
public string
|
||
|
|
||
|
arrivedDays
|
||
|
{ get; set; }
|
||
|
[JsonProperty("transportId")]
|
||
|
public long
|
||
|
|
||
|
transportId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("shipCostBuy")]
|
||
|
public string
|
||
|
|
||
|
shipCostBuy
|
||
|
{ get; set; }
|
||
|
[JsonProperty("shipDisBuy")]
|
||
|
public string
|
||
|
|
||
|
shipDisBuy
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|