admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
package com.yeshi.fanli.util.goods.douyin.vo;
 
import com.yeshi.fanli.entity.goods.BaseGoodsInfo;
 
/**
 * @author hxh
 * @title: DYGoods
 * @description: 抖音商品信息
 * @date 2022/9/28 10:14
 */
public class DYGoods extends BaseGoodsInfo {
    /**
     * product_id : 3566898027765626183
     * title : 千可净小白鞋专用去污膏不伤手带海绵擦去污渍膏
     * is_kol_product : false
     * price : 990
     * first_cid : 20073
     * second_cid : 21125
     * third_cid : 26764
     * in_stock : true
     * sales : 439168
     * cover : https://p3-aio.ecombdimg.com/obj/ecom-shop-material/RFZoBkS_m_b56b6e4ac369731c1cea6c5d6cd01d28_sx_278669_www800-800
     * detail_url : https://haohuo.jinritemai.com/views/product/item2?id=3566898027765626183
     * shop_id : 6985389
     * shop_name : 蜜斯
     * coupon_price : 0
     * cos_ratio : 3600
     * cos_fee : 356
     * ext : req_id=cefc005b-e4c7-4d23-8605-95427fe3534a&product_id=3566898027765626183
     */
   /**
    * 商品id
    **/
    private Long product_id;
    /**
     * 商品名称
     **/
    private String title;
    /**
     * 在穿⼭甲上是否有达⼈特殊佣⾦
     **/
    private Boolean is_kol_product;
    /**
     * 商品价格,单位分
     **/
    private Long price;
    /**
     * 商品⼀级类⽬
     **/
    private Long first_cid;
    /**
     * 商品⼆级类⽬
     **/
    private Long second_cid;
    /**
     * 商品三级类⽬
     **/
    private Long third_cid;
    /**
     * 有⽆库存
     **/
    private Boolean in_stock;
    /**
     * 商品历史销量
     **/
    private Integer sales;
    /**
     * 商品主图
     **/
    private String cover;
    /**
     * 商品链接
     **/
    private String detail_url;
    /**
     * 商铺id
     **/
    private Long shop_id;
    /**
     * 商铺名称
     **/
    private String shop_name;
    /**
     * 券后价格,单位分(0或者没传则为
     * 原价)
     **/
    private Long coupon_price;
    /**
     * 分佣⽐例,百分⽐乘以 100,⽐如
     * 1% 返回 1*100 = 100
     **/
    private Integer cos_ratio;
    /**
     * 佣⾦⾦额,单位分
     **/
    private Integer cos_fee;
    /**
     * ⼀个加密字段,需要在转链接⼝当
     * 中回传
     **/
    private String ext;
 
    public Long getProduct_id() {
        return product_id;
    }
 
    public void setProduct_id(Long product_id) {
        this.product_id = product_id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Boolean isIs_kol_product() {
        return is_kol_product;
    }
 
    public void setIs_kol_product(Boolean is_kol_product) {
        this.is_kol_product = is_kol_product;
    }
 
    public Long getPrice() {
        return price;
    }
 
    public void setPrice(Long price) {
        this.price = price;
    }
 
    public Long getFirst_cid() {
        return first_cid;
    }
 
    public void setFirst_cid(Long first_cid) {
        this.first_cid = first_cid;
    }
 
    public Long getSecond_cid() {
        return second_cid;
    }
 
    public void setSecond_cid(Long second_cid) {
        this.second_cid = second_cid;
    }
 
    public Long getThird_cid() {
        return third_cid;
    }
 
    public void setThird_cid(Long third_cid) {
        this.third_cid = third_cid;
    }
 
    public Boolean isIn_stock() {
        return in_stock;
    }
 
    public void setIn_stock(Boolean in_stock) {
        this.in_stock = in_stock;
    }
 
    public Integer getSales() {
        return sales;
    }
 
    public void setSales(Integer sales) {
        this.sales = sales;
    }
 
    public String getCover() {
        return cover;
    }
 
    public void setCover(String cover) {
        this.cover = cover;
    }
 
    public String getDetail_url() {
        return detail_url;
    }
 
    public void setDetail_url(String detail_url) {
        this.detail_url = detail_url;
    }
 
    public Long getShop_id() {
        return shop_id;
    }
 
    public void setShop_id(Long shop_id) {
        this.shop_id = shop_id;
    }
 
    public String getShop_name() {
        return shop_name;
    }
 
    public void setShop_name(String shop_name) {
        this.shop_name = shop_name;
    }
 
    public Long getCoupon_price() {
        return coupon_price;
    }
 
    public void setCoupon_price(Long coupon_price) {
        this.coupon_price = coupon_price;
    }
 
    public Integer getCos_ratio() {
        return cos_ratio;
    }
 
    public void setCos_ratio(Integer cos_ratio) {
        this.cos_ratio = cos_ratio;
    }
 
    public Integer getCos_fee() {
        return cos_fee;
    }
 
    public void setCos_fee(Integer cos_fee) {
        this.cos_fee = cos_fee;
    }
 
    public String getExt() {
        return ext;
    }
 
    public void setExt(String ext) {
        this.ext = ext;
    }
}