using System; using System.Collections.Generic; using System.Text; namespace DkSdkCore.Response { public class TkGetTiktokGoodDetailResponse:DkResponse { public TkGetTiktokGoodDetailList data { get; set; } } public class TkGetTiktokGoodDetailList { public List list { get; set; } public int total { get; set; } } public class TkGetTiktokGoodDetail { public int categoryId { get; set; } public string categoryName { get; set; } public int commentNum { get; set; } public double commentScore { get; set; } public double cosFee { get; set; } public int cosRatio { get; set; } public int couponPrice { get; set; } public string cover { get; set; } public string detailUrl { get; set; } public int firstCid { get; set; } public bool hasSxt { get; set; } public string[] imgs { get; set; } public bool inStock { get; set; } public int kolCosFee { get; set; } public int kolCosRatio { get; set; } public int kolNum { get; set; } public string logisticsInfo { get; set; } public int orderNum { get; set; } public double price { get; set; } public string productId { get; set; } public string reason { get; set; } public int sales { get; set; } public int secondCid { get; set; } public bool sharable { get; set; } public int shopId { get; set; } public string shopName { get; set; } public ShopTotalScore shopTotalScore { get; set; } public int status { get; set; } public int thirdCid { get; set; } public string title { get; set; } public int viewNum { get; set; } } public class ShopTotalScore { public LogisticsScore logisticsScore { get; set; } public ProductScore productScore { get; set; } public ServiceScore serviceScore { get; set; } public ShopScore shopScore { get; set; } } public class LogisticsScore { public int level { get; set; } public string score { get; set; } public string text { get; set; } } public class ProductScore { public int level { get; set; } public string score { get; set; } public string text { get; set; } } public class ServiceScore { public int level { get; set; } public string score { get; set; } public string text { get; set; } } public class ShopScore { public int level { get; set; } public string score { get; set; } public string text { get; set; } } }