admin
2019-07-30 573c491b4a1ba60e12a5678a01c1546c0077c1ee
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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
package com.yeshi.fanli.entity.taobao;
 
import java.math.BigDecimal;
import java.util.Date;
 
import org.yeshi.utils.mybatis.Column;
import org.yeshi.utils.mybatis.Table;
 
@Table("yeshi_ec_taobao_order")
public class TaoBaoOrder {
    @Column(name = "to_id")
    private Long id;
 
    @Column(name = "to_create_time")
    private String createTime; // 创建时间
    @Column(name = "to_click_time")
    private String clickTime; // 点击时间
    @Column(name = "to_title")
    private String title; // 商品名称
    @Column(name = "to_auction_id")
    private Long auctionId; // 商品ID
    @Column(name = "to_manager_wangwang")
    private String managerWangWang; // 掌柜旺旺
    @Column(name = "to_shop")
    private String shop; // 所属店铺
    @Column(name = "to_count")
    private Integer count; // 商品数
    @Column(name = "to_price")
    private BigDecimal price; // 商品单价
    @Column(name = "to_order_state")
    private String orderState; // 订单状态 :订单付款、订单失效、订单结算
    @Column(name = "to_order_type")
    private String orderType; // 订单类型
    @Column(name = "to_iratio")
    private BigDecimal iRatio; // 收入比率
    @Column(name = "to_sratio")
    private BigDecimal sRatio; // 分成比率
    @Column(name = "to_payment")
    private BigDecimal payment; // 付款金额
    @Column(name = "to_estimate")
    private BigDecimal estimate; // 效果预估
    @Column(name = "to_settlement")
    private BigDecimal settlement; // 结算金额
    @Column(name = "to_eIncome")
    private BigDecimal eIncome; // 预估收入
    @Column(name = "to_settlement_time")
    private String settlementTime; // 结算时间
    @Column(name = "to_tk_rate")
    private BigDecimal tkRate; // 佣金比率
    @Column(name = "to_tk_money")
    private BigDecimal tkMoney; // 佣金金额
    @Column(name = "to_technology_support_percent")
    private BigDecimal technologySupportPercent;// 技术服务费
    @Column(name = "to_subsidy_ratio")
    private BigDecimal subsidyRatio; // 补贴比率
    @Column(name = "to_subsidy")
    private BigDecimal subsidy; // 补贴金额
    @Column(name = "to_subsidy_type")
    private String subsidyType; // 补贴类型
    @Column(name = "to_transaction_platform")
    private String transactionPlatform; // 成交平台
    @Column(name = "to_third_service")
    private String thirdService; // 第三方服务来源
    @Column(name = "to_order_id")
    private String orderId; // 订单编号
    @Column(name = "to_class_name")
    private String className; // 类目名称
    @Column(name = "to_source_media_id")
    private String sourceMediaId; // 来源媒体Id
    @Column(name = "to_source_media_name")
    private String sourceMediaName; // 来源媒体名称
    @Column(name = "to_ad_position_id")
    private String adPositionId; // 广告位ID
    @Column(name = "to_ad_position_name")
    private String adPositionName; // 广告位名称
    @Column(name = "to_latest_updatetime")
    private Date latestUpdateTime;// 最近一次的更新时间
    @Column(name = "to_orderby")
    private Integer orderBy;// 排序值
    @Column(name = "to_special_id")
    private String specialId;
    @Column(name = "to_relation_id")
    private String relationId;
    @Column(name = "to_trade_id")
    private String tradeId;//交易ID
 
    public String getTradeId() {
        return tradeId;
    }
 
    public void setTradeId(String tradeId) {
        this.tradeId = tradeId;
    }
 
    public String getSpecialId() {
        return specialId;
    }
 
    public void setSpecialId(String specialId) {
        this.specialId = specialId;
    }
 
    public String getRelationId() {
        return relationId;
    }
 
    public void setRelationId(String relationId) {
        this.relationId = relationId;
    }
 
    public Integer getOrderBy() {
        return orderBy;
    }
 
    public void setOrderBy(Integer orderBy) {
        this.orderBy = orderBy;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Date getLatestUpdateTime() {
        return latestUpdateTime;
    }
 
    public void setLatestUpdateTime(Date latestUpdateTime) {
        this.latestUpdateTime = latestUpdateTime;
    }
 
    public BigDecimal getTechnologySupportPercent() {
        return technologySupportPercent;
    }
 
    public void setTechnologySupportPercent(BigDecimal technologySupportPercent) {
        this.technologySupportPercent = technologySupportPercent;
    }
 
    public String getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(String createTime) {
        this.createTime = createTime;
    }
 
    public String getClickTime() {
        return clickTime;
    }
 
    public void setClickTime(String clickTime) {
        this.clickTime = clickTime;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Long getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(Long auctionId) {
        this.auctionId = auctionId;
    }
 
    public String getManagerWangWang() {
        return managerWangWang;
    }
 
    public void setManagerWangWang(String managerWangWang) {
        this.managerWangWang = managerWangWang;
    }
 
    public String getShop() {
        return shop;
    }
 
    public void setShop(String shop) {
        this.shop = shop;
    }
 
    public Integer getCount() {
        return count;
    }
 
    public void setCount(Integer count) {
        this.count = count;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public String getOrderState() {
        return orderState;
    }
 
    public void setOrderState(String orderState) {
        this.orderState = orderState;
    }
 
    public String getOrderType() {
        return orderType;
    }
 
    public void setOrderType(String orderType) {
        this.orderType = orderType;
    }
 
    public BigDecimal getiRatio() {
        return iRatio;
    }
 
    public void setiRatio(BigDecimal iRatio) {
        this.iRatio = iRatio;
    }
 
    public BigDecimal getsRatio() {
        return sRatio;
    }
 
    public void setsRatio(BigDecimal sRatio) {
        this.sRatio = sRatio;
    }
 
    public BigDecimal getPayment() {
        return payment;
    }
 
    public void setPayment(BigDecimal payment) {
        this.payment = payment;
    }
 
    public BigDecimal getEstimate() {
        return estimate;
    }
 
    public void setEstimate(BigDecimal estimate) {
        this.estimate = estimate;
    }
 
    public BigDecimal getSettlement() {
        return settlement;
    }
 
    public void setSettlement(BigDecimal settlement) {
        this.settlement = settlement;
    }
 
    public BigDecimal geteIncome() {
        return eIncome;
    }
 
    public void seteIncome(BigDecimal eIncome) {
        this.eIncome = eIncome;
    }
 
    public String getSettlementTime() {
        return settlementTime;
    }
 
    public void setSettlementTime(String settlementTime) {
        this.settlementTime = settlementTime;
    }
 
    public BigDecimal getTkRate() {
        return tkRate;
    }
 
    public void setTkRate(BigDecimal tkRate) {
        this.tkRate = tkRate;
    }
 
    public BigDecimal getTkMoney() {
        return tkMoney;
    }
 
    public void setTkMoney(BigDecimal tkMoney) {
        this.tkMoney = tkMoney;
    }
 
    public BigDecimal getSubsidyRatio() {
        return subsidyRatio;
    }
 
    public void setSubsidyRatio(BigDecimal subsidyRatio) {
        this.subsidyRatio = subsidyRatio;
    }
 
    public BigDecimal getSubsidy() {
        return subsidy;
    }
 
    public void setSubsidy(BigDecimal subsidy) {
        this.subsidy = subsidy;
    }
 
    public String getSubsidyType() {
        return subsidyType;
    }
 
    public void setSubsidyType(String subsidyType) {
        this.subsidyType = subsidyType;
    }
 
    public String getTransactionPlatform() {
        return transactionPlatform;
    }
 
    public void setTransactionPlatform(String transactionPlatform) {
        this.transactionPlatform = transactionPlatform;
    }
 
    public String getThirdService() {
        return thirdService;
    }
 
    public void setThirdService(String thirdService) {
        this.thirdService = thirdService;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public String getClassName() {
        return className;
    }
 
    public void setClassName(String className) {
        this.className = className;
    }
 
    public String getSourceMediaId() {
        return sourceMediaId;
    }
 
    public void setSourceMediaId(String sourceMediaId) {
        this.sourceMediaId = sourceMediaId;
    }
 
    public String getSourceMediaName() {
        return sourceMediaName;
    }
 
    public void setSourceMediaName(String sourceMediaName) {
        this.sourceMediaName = sourceMediaName;
    }
 
    public String getAdPositionId() {
        return adPositionId;
    }
 
    public void setAdPositionId(String adPositionId) {
        this.adPositionId = adPositionId;
    }
 
    public String getAdPositionName() {
        return adPositionName;
    }
 
    public void setAdPositionName(String adPositionName) {
        this.adPositionName = adPositionName;
    }
 
}