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; } } }