using System; using System.Collections.Generic; using System.Text; namespace DkSdkCore.Response { public class TkGetSuperGoodListResponse:DkResponse { public SuperGoodData data { get; set; } } public class SuperGoodData { public List list { get; set; } public int totalNum { get; set; } public string pageId { get; set; } } public class SuperGoodList { public int id { get; set; } public string goodsId { get; set; } public string title { get; set; } public string dtitle { get; set; } public decimal originalPrice { get; set; } public decimal actualPrice { get; set; } public int shopType { get; set; } public int goldSellers { get; set; } public int monthSales { get; set; } public int twoHoursSales { get; set; } public int dailySales { get; set; } public int commissionType { get; set; } public string desc { get; set; } public int couponReceiveNum { get; set; } public string couponLink { get; set; } public string couponEndTime { get; set; } public string couponStartTime { get; set; } public decimal couponPrice { get; set; } public string couponConditions { get; set; } public string couponId { get; set; } public int activityType { get; set; } public string createTime { get; set; } public string mainPic { get; set; } public string marketingMainPic { get; set; } public string sellerId { get; set; } public int cid { get; set; } public double discounts { get; set; } public double commissionRate { get; set; } public int couponTotalNum { get; set; } public int haitao { get; set; } public string activityStartTime { get; set; } public string activityEndTime { get; set; } public string shopName { get; set; } public int shopLevel { get; set; } public double descScore { get; set; } public int brand { get; set; } public long brandId { get; set; } public string brandName { get; set; } public int hotPush { get; set; } public string teamName { get; set; } public string itemLink { get; set; } public int tchaoshi { get; set; } public double dsrScore { get; set; } public double dsrPercent { get; set; } public double shipScore { get; set; } public double shipPercent { get; set; } public double serviceScore { get; set; } public double servicePercent { get; set; } public List subcid { get; set; } public int tbcid { get; set; } public int quanMLink { get; set; } public int hzQuanOver { get; set; } public int yunfeixian { get; set; } public decimal estimateAmount { get; set; } public string[] smallImages { get; set; } } }