heyuntao
2023-05-05 cc09b6fe6ffac34a4eeeb26d313b187713cae0de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
using System;
using System.Collections.Generic;
using System.Text;
 
namespace DkSdkCore.Response
{
    /// <summary>
    /// 抖音高佣精选商品
    /// </summary>
    public class TkGetTiktokSxGoodListResponse:DkResponse
    {
        public TiktokSxGoodList data { get; set; }
    }
 
    public class TiktokSxGoodList
    {
        public int page { get; set; }
        public int size { get; set; }
        public int total { get; set; }
 
        public List<TiktokSxGood> list { get; set; }
    }
    public class TiktokSxGood
    {
        public string actualSelectionTime { get; set; }
        public int anchorWithGoods { get; set; }
        public int brandId { get; set; }
        public string brandLogo { get; set; }
        public string brandNameCn { get; set; }
        public string brandNameEn { get; set; }
        public double browseConversionRate { get; set; }
        public int categoryId { get; set; }
        public string categoryName { get; set; }
        public int commentNum { get; set; }
        public int commentRate { get; set; }
        public double commentScore { get; set; }
        public double cosFee { get; set; }
        public int cosRatio { get; set; }
        public int couponAmount { get; set; }
        public string couponId { get; set; }
        public string couponLink { get; set; }
        public decimal couponPrice { get; set; }
        public string couponTime { get; set; }
        public int couponType { get; set; }
        public string cover { get; set; }
        public string detailUrl { get; set; }
        public double discountRate { get; set; }
        public int elaboration { get; set; }
        public int firstCid { get; set; }
        public string firstCname { get; set; }
        public int flagshipStore { get; set; }
        public int hasShopBrandTag { get; set; }
        public bool hasSxt { get; set; }
        public double highCommissionAmount { get; set; }
        public string highCommissionLink { get; set; }
        public int highCommissionRadio { get; set; }
        public string highCommissionStartTime { get; set; }
        public string highCommissionTime { get; set; }
        public int historicalSales { get; set; }
        public string id { get; set; }
        public bool inStock { get; set; }
        public string inspectionTime { get; set; }
        public int isActualSelection { get; set; }
        public int isChoice { get; set; }
        public int isDelete { get; set; }
        public int isInspection { get; set; }
        public int isLow { get; set; }
        public int isSample { get; set; }
        public int kolCosFee { get; set; }
        public int kolCosRatio { get; set; }
        public int kolNum { get; set; }
        public int liveSales { get; set; }
        public string logisticsInfo { get; set; }
        public int logisticsLevel { get; set; }
        public double logisticsScore { get; set; }
        public int maxLimit { get; set; }
        public int minLimit { get; set; }
        public int orderNum { get; set; }
        public int peaceMindBuy { get; set; }
        public double price { get; set; }
        public int productLevel { get; set; }
        public double productScore { get; set; }
        public int sales { get; set; }
        public int sales24day { get; set; }
        public int sales24h { get; set; }
        public int sales2h { get; set; }
        public int sales30day { get; set; }
        public int sales7day { get; set; }
        public string salesUpdateTime { get; set; }
        public int scoreComprehensiveScore { get; set; }
        public int scoreDrainageProductList { get; set; }
        public int scoreMeatList { get; set; }
        public int scoreQualityProductList { get; set; }
        public int secondCid { get; set; }
        public string secondCname { get; set; }
        public int serviceLevel { get; set; }
        public double serviceScore { get; set; }
        public int sharable { get; set; }
        public int shopId { get; set; }
        public int shopLevel { get; set; }
        public string shopLogo { get; set; }
        public string shopName { get; set; }
        public double shopScore { get; set; }
        public int sortScore { get; set; }
        public int startPurchaseNum { get; set; }
        public string surveyor { get; set; }
        public int sxPrice { get; set; }
        public int sysChoice { get; set; }
        public int tbBrandId { get; set; }
        public int tbBrandLevel { get; set; }
        public int tbBrandScore { get; set; }
        public int thirdCid { get; set; }
        public string thirdCname { get; set; }
        public string thumbnail { get; set; }
        public string title { get; set; }
        public int tkUid { get; set; }
        public double totalPrice { get; set; }
        public int uid { get; set; }
        public string updateTime { get; set; }
        public int videoSales { get; set; }
        public int viewNum { get; set; }
        public string createTime { get; set; }
    }
}