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.
68 lines
1.7 KiB
68 lines
1.7 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 PromoSkuVO:JdObject{
|
||
|
[JsonProperty("ware_id")]
|
||
|
public long
|
||
|
|
||
|
wareId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("item_num")]
|
||
|
public string
|
||
|
|
||
|
itemNum
|
||
|
{ get; set; }
|
||
|
[JsonProperty("sku_id")]
|
||
|
public long
|
||
|
|
||
|
skuId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("sku_name")]
|
||
|
public string
|
||
|
|
||
|
skuName
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promo_id")]
|
||
|
public long
|
||
|
|
||
|
promoId
|
||
|
{ get; set; }
|
||
|
[JsonProperty("jd_price")]
|
||
|
public string
|
||
|
|
||
|
jdPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("promo_price")]
|
||
|
public string
|
||
|
|
||
|
promoPrice
|
||
|
{ get; set; }
|
||
|
[JsonProperty("seq")]
|
||
|
public int
|
||
|
|
||
|
seq
|
||
|
{ get; set; }
|
||
|
[JsonProperty("num")]
|
||
|
public int
|
||
|
|
||
|
num
|
||
|
{ get; set; }
|
||
|
[JsonProperty("bind_type")]
|
||
|
public int
|
||
|
|
||
|
bindType
|
||
|
{ get; set; }
|
||
|
[JsonProperty("rfId")]
|
||
|
public long
|
||
|
|
||
|
rfId
|
||
|
{ get; set; }
|
||
|
}
|
||
|
}
|