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.
70 lines
1.3 KiB
70 lines
1.3 KiB
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
namespace Jd.Api.Response
|
|
{
|
|
|
|
public class MarketBdpSaleVenderSkuRankQueryResponse:JdResponse{
|
|
[JsonProperty("opTime")]
|
|
public string
|
|
|
|
opTime
|
|
{ get; set; }
|
|
[JsonProperty("shopId")]
|
|
public string
|
|
|
|
shopId
|
|
{ get; set; }
|
|
[JsonProperty("shopName")]
|
|
public string
|
|
|
|
shopName
|
|
{ get; set; }
|
|
[JsonProperty("venderId")]
|
|
public string
|
|
|
|
venderId
|
|
{ get; set; }
|
|
[JsonProperty("venderName")]
|
|
public string
|
|
|
|
venderName
|
|
{ get; set; }
|
|
[JsonProperty("itemSkuIdList")]
|
|
public string
|
|
|
|
itemSkuIdList
|
|
{ get; set; }
|
|
[JsonProperty("skuNameList")]
|
|
public string
|
|
|
|
skuNameList
|
|
{ get; set; }
|
|
[JsonProperty("saleQttyDealList")]
|
|
public string
|
|
|
|
saleQttyDealList
|
|
{ get; set; }
|
|
[JsonProperty("afterPrefrAmountDealList")]
|
|
public string
|
|
|
|
afterPrefrAmountDealList
|
|
{ get; set; }
|
|
[JsonProperty("saleIndicatorType")]
|
|
public long
|
|
|
|
saleIndicatorType
|
|
{ get; set; }
|
|
[JsonProperty("dt")]
|
|
public string
|
|
|
|
dt
|
|
{ get; set; }
|
|
[JsonProperty("tp")]
|
|
public string
|
|
|
|
tp
|
|
{ get; set; }
|
|
}
|
|
}
|
|
|