using System; using System.Collections.Generic; using System.Text; namespace DkSdkCore.Response { public class TkGetGoodRankingListResponse: DkResponse { public List data { get; set; } } public class RankData { public int id { get; set; } public string goodsId { get; set; } public int ranking { get; set; } public string dtitle { get; set; } public double actualPrice { get; set; } public double commissionRate { get; set; } public double couponPrice { get; set; } public int couponReceiveNum { get; set; } public int couponTotalNum { get; set; } public int monthSales { get; set; } public int twoHoursSales { get; set; } public int dailySales { get; set; } public int hotPush { get; set; } public string mainPic { get; set; } public string title { get; set; } public string desc { get; set; } public double originalPrice { get; set; } public string couponLink { get; set; } public string couponStartTime { get; set; } public string couponEndTime { get; set; } public int commissionType { get; set; } public string createTime { get; set; } public int activityType { get; set; } public string imgs { get; set; } public string guideName { get; set; } public int shopType { get; set; } public string couponConditions { get; set; } public int newRankingGoods { get; set; } public string sellerId { get; set; } public int quanMLink { get; set; } public int hzQuanOver { get; set; } public int yunfeixian { get; set; } public int estimateAmount { get; set; } public int freeshipRemoteDistrict { get; set; } } }