ChannelSkuCompare.java
2.22 KB
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
package com.yoho.ufo.model;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* 爬虫跟毒价
*/
public class ChannelSkuCompare implements Serializable {
private static final long serialVersionUID = 1613330087543482073L;
/**
* 主键
*/
private Integer id;
/**
* 商品ID
*/
private Integer productId;
private Integer sku;
private Integer sizeId;
private BigDecimal channelPrice;
private BigDecimal lowRate;
private BigDecimal highRate;
private Integer updateTime;
private String channelUrl;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public Integer getProductId() {
return productId;
}
public void setProductId(Integer productId) {
this.productId = productId;
}
public Integer getSku() {
return sku;
}
public void setSku(Integer sku) {
this.sku = sku;
}
public Integer getSizeId() {
return sizeId;
}
public void setSizeId(Integer sizeId) {
this.sizeId = sizeId;
}
public BigDecimal getChannelPrice() {
return channelPrice;
}
public void setChannelPrice(BigDecimal channelPrice) {
this.channelPrice = channelPrice;
}
public BigDecimal getLowRate() {
return lowRate;
}
public void setLowRate(BigDecimal lowRate) {
this.lowRate = lowRate;
}
public BigDecimal getHighRate() {
return highRate;
}
public void setHighRate(BigDecimal highRate) {
this.highRate = highRate;
}
public Integer getUpdateTime() {
return updateTime;
}
public void setUpdateTime(Integer updateTime) {
this.updateTime = updateTime;
}
public String getChannelUrl() {
return channelUrl;
}
public void setChannelUrl(String channelUrl) {
this.channelUrl = channelUrl;
}
@Override
public String toString() {
return "ProductPool{" +
"id=" + id +
", productId='" + productId +
", sku=" + sku +
", sizeId=" + sizeId +
", channelPrice=" + channelPrice +
", lowRate=" + lowRate +
", highRate=" + highRate +
", updateTime=" + updateTime +
", channelUrl=" + channelUrl +
'}';
}
}