admin
2019-07-23 496c2842240eae09bb56e98e1fae71540a85befa
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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
package com.yeshi.fanli.entity.taobao.dataoke;
 
import java.math.BigDecimal;
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
import com.google.gson.annotations.SerializedName;
 
/**
 * 大淘客商品详情
 * 
 * @author Administrator
 *
 */
@Table("yeshi_ec_goods_dataoke")
public class DaTaoKeDetail {
    
    public DaTaoKeDetail(Long id) {
        this.id = id;
    }
    
    public DaTaoKeDetail() {
    }
    
    @Column(name = "id")
    @SerializedName("ID")
    private Long id;// 大淘客ID
 
 
    @Column(name = "d_title")
    @SerializedName("D_title")
    private String dTitle;// 商品短标题
    @Column(name = "title")
    @SerializedName("Title")
    private String title;// 商品标题
    @Column(name = "dsr")
    @SerializedName("Dsr")
    private String dsr;// 商品描述分
    @Column(name = "commission_queqiao")
    @SerializedName("Commission_queqiao")
    private BigDecimal commissionQueQiao;// 高佣鹊桥佣金比例
    @Column(name = "quan_receive")
    @SerializedName("Quan_receive")
    private Integer quanReceive;// 已领券数量
    @Column(name = "quan_price")
    @SerializedName("Quan_price")
    private BigDecimal quanPrice;// 优惠券金额
    @Column(name = "yongjin_type")
    @SerializedName("Yongjin_type")
    private Integer yongJinType;// 佣金类型
    @Column(name = "quan_time")
    @SerializedName("Quan_time")
    private String quanTime;// 优惠券结束时间
    @Column(name = "jihua_link")
    @SerializedName("Jihua_link")
    private String jiHuaLink;// 计划链接
    @Column(name = "price")
    @SerializedName("Price")
    private BigDecimal price;// 券后价
    @Column(name = "jihua_shenhe")
    @SerializedName("Jihua_shenhe")
    private Integer jiHuaShenHe;// 计划审核
    @Column(name = "introduce")
    @SerializedName("Introduce")
    private String introduce;// 商品文案
    @Column(name = "cid")
    @SerializedName("Cid")
    private Integer cid;// 分类ID
    @Column(name = "sales_num")
    @SerializedName("Sales_num")
    private Integer salesNum;// 销量
    @Column(name = "quan_link")
    @SerializedName("Quan_link")
    private String quanLink;// 手机券链接
    @Column(name = "is_tmall")
    @SerializedName("IsTmall")
    private Integer isTmall;// 是否是天猫
    @Column(name = "goods_id")
    @SerializedName("GoodsID")
    private Long goodsId;// 淘宝商品ID
    @Column(name = "commission_jihua")
    @SerializedName("Commission_jihua")
    private BigDecimal commissionJiHua;// 计划(通用)佣金比例
    @Column(name = "que_siteid")
    @SerializedName("Que_siteid")
    private String queSiteId;
    @Column(name = "commission")
    @SerializedName("Commission")
    private BigDecimal commission;// 佣金
    @Column(name = "pic")
    @SerializedName("Pic")
    private String pic;// 图片
    @Column(name = "org_price")
    @SerializedName("Org_Price")
    private BigDecimal orgPrice;// 正常售价
    @Column(name = "quan_m_link")
    @SerializedName("Quan_m_link")
    private String quanMLink;// 手机券短链
    @Column(name = "quan_id")
    @SerializedName("Quan_id")
    private String quanId;// 优惠券ID
    @Column(name = "quan_condition")
    @SerializedName("Quan_condition")
    private String quanCondition;// 优惠券使用条件
    @Column(name = "quan_surplus")
    @SerializedName("Quan_surplus")
    private Integer quanSurplus;// 优惠券剩余数量
    @Column(name = "seller_id")
    @SerializedName("SellerID")
    private Long sellerId;// 卖家ID
    @Column(name = "udapte_time")
    private Date updateTime;
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getdTitle() {
        return dTitle;
    }
 
    public void setdTitle(String dTitle) {
        this.dTitle = dTitle;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getDsr() {
        return dsr;
    }
 
    public void setDsr(String dsr) {
        this.dsr = dsr;
    }
 
    public BigDecimal getCommissionQueQiao() {
        return commissionQueQiao;
    }
 
    public void setCommissionQueQiao(BigDecimal commissionQueQiao) {
        this.commissionQueQiao = commissionQueQiao;
    }
 
    public Integer getQuanReceive() {
        return quanReceive;
    }
 
    public void setQuanReceive(Integer quanReceive) {
        this.quanReceive = quanReceive;
    }
 
    public BigDecimal getQuanPrice() {
        return quanPrice;
    }
 
    public void setQuanPrice(BigDecimal quanPrice) {
        this.quanPrice = quanPrice;
    }
 
    public Integer getYongJinType() {
        return yongJinType;
    }
 
    public void setYongJinType(Integer yongJinType) {
        this.yongJinType = yongJinType;
    }
 
    public String getQuanTime() {
        return quanTime;
    }
 
    public void setQuanTime(String quanTime) {
        this.quanTime = quanTime;
    }
 
    public String getJiHuaLink() {
        return jiHuaLink;
    }
 
    public void setJiHuaLink(String jiHuaLink) {
        this.jiHuaLink = jiHuaLink;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public Integer getJiHuaShenHe() {
        return jiHuaShenHe;
    }
 
    public void setJiHuaShenHe(Integer jiHuaShenHe) {
        this.jiHuaShenHe = jiHuaShenHe;
    }
 
    public String getIntroduce() {
        return introduce;
    }
 
    public void setIntroduce(String introduce) {
        this.introduce = introduce;
    }
 
    public Integer getCid() {
        return cid;
    }
 
    public void setCid(Integer cid) {
        this.cid = cid;
    }
 
    public Integer getSalesNum() {
        return salesNum;
    }
 
    public void setSalesNum(Integer salesNum) {
        this.salesNum = salesNum;
    }
 
    public String getQuanLink() {
        return quanLink;
    }
 
    public void setQuanLink(String quanLink) {
        this.quanLink = quanLink;
    }
 
    public Integer getIsTmall() {
        return isTmall;
    }
 
    public void setIsTmall(Integer isTmall) {
        this.isTmall = isTmall;
    }
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public BigDecimal getCommissionJiHua() {
        return commissionJiHua;
    }
 
    public void setCommissionJiHua(BigDecimal commissionJiHua) {
        this.commissionJiHua = commissionJiHua;
    }
 
    public String getQueSiteId() {
        return queSiteId;
    }
 
    public void setQueSiteId(String queSiteId) {
        this.queSiteId = queSiteId;
    }
 
    public BigDecimal getCommission() {
        return commission;
    }
 
    public void setCommission(BigDecimal commission) {
        this.commission = commission;
    }
 
    public String getPic() {
        return pic;
    }
 
    public void setPic(String pic) {
        this.pic = pic;
    }
 
    public BigDecimal getOrgPrice() {
        return orgPrice;
    }
 
    public void setOrgPrice(BigDecimal orgPrice) {
        this.orgPrice = orgPrice;
    }
 
    public String getQuanMLink() {
        return quanMLink;
    }
 
    public void setQuanMLink(String quanMLink) {
        this.quanMLink = quanMLink;
    }
 
    public String getQuanId() {
        return quanId;
    }
 
    public void setQuanId(String quanId) {
        this.quanId = quanId;
    }
 
    public String getQuanCondition() {
        return quanCondition;
    }
 
    public void setQuanCondition(String quanCondition) {
        this.quanCondition = quanCondition;
    }
 
    public Integer getQuanSurplus() {
        return quanSurplus;
    }
 
    public void setQuanSurplus(Integer quanSurplus) {
        this.quanSurplus = quanSurplus;
    }
 
    public Long getSellerId() {
        return sellerId;
    }
 
    public void setSellerId(Long sellerId) {
        this.sellerId = sellerId;
    }
}