admin
2020-06-20 0ab8a2ea521a838124f517daf4e61dee971a6d4c
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
package com.ks.tool.bkz.entity;
 
import java.math.BigDecimal;
import java.util.Date;
 
public class TBGoodsInfo {
    private Long id;
    private Long goodsId;
    private String title;
    private String imgs;
    private BigDecimal zkPrice;
    private String couponInfo;
    private BigDecimal couponAmount;
    private BigDecimal couponStartPrice;
    private Integer couponTotalCount;
    private Integer couponLeftCount;
    private String couponStartTime;
    private String couponEndTime;
    private BigDecimal couponPrice;
    private Integer salesNum;
    private BigDecimal commissionRate;
    private Date createTime;
    private Date updateTime;
    private Integer cid;//淘宝分类ID
    private Integer tmall;//是否为天猫 1-是
    private String tkl;
    private Date tklUpdateTime;
 
    public String getTkl() {
        return tkl;
    }
 
    public void setTkl(String tkl) {
        this.tkl = tkl;
    }
 
    public Date getTklUpdateTime() {
        return tklUpdateTime;
    }
 
    public void setTklUpdateTime(Date tklUpdateTime) {
        this.tklUpdateTime = tklUpdateTime;
    }
 
    public Integer getTmall() {
        return tmall;
    }
 
    public void setTmall(Integer tmall) {
        this.tmall = tmall;
    }
 
 
 
 
 
 
 
 
    public Integer getCid() {
        return cid;
    }
 
    public void setCid(Integer cid) {
        this.cid = cid;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getImgs() {
        return imgs;
    }
 
    public void setImgs(String imgs) {
        this.imgs = imgs;
    }
 
    public BigDecimal getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(BigDecimal zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(String couponInfo) {
        this.couponInfo = couponInfo;
    }
 
    public BigDecimal getCouponAmount() {
        return couponAmount;
    }
 
    public void setCouponAmount(BigDecimal couponAmount) {
        this.couponAmount = couponAmount;
    }
 
    public BigDecimal getCouponStartPrice() {
        return couponStartPrice;
    }
 
    public void setCouponStartPrice(BigDecimal couponStartPrice) {
        this.couponStartPrice = couponStartPrice;
    }
 
    public Integer getCouponTotalCount() {
        return couponTotalCount;
    }
 
    public void setCouponTotalCount(Integer couponTotalCount) {
        this.couponTotalCount = couponTotalCount;
    }
 
    public Integer getCouponLeftCount() {
        return couponLeftCount;
    }
 
    public void setCouponLeftCount(Integer couponLeftCount) {
        this.couponLeftCount = couponLeftCount;
    }
 
    public String getCouponStartTime() {
        return couponStartTime;
    }
 
    public void setCouponStartTime(String couponStartTime) {
        this.couponStartTime = couponStartTime;
    }
 
    public String getCouponEndTime() {
        return couponEndTime;
    }
 
    public void setCouponEndTime(String couponEndTime) {
        this.couponEndTime = couponEndTime;
    }
 
    public BigDecimal getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(BigDecimal couponPrice) {
        this.couponPrice = couponPrice;
    }
 
    public Integer getSalesNum() {
        return salesNum;
    }
 
    public void setSalesNum(Integer salesNum) {
        this.salesNum = salesNum;
    }
 
    public BigDecimal getCommissionRate() {
        return commissionRate;
    }
 
    public void setCommissionRate(BigDecimal commissionRate) {
        this.commissionRate = commissionRate;
    }
 
    public Date getCreateTime() {
        return createTime;
    }
 
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
 
    public Date getUpdateTime() {
        return updateTime;
    }
 
    public void setUpdateTime(Date updateTime) {
        this.updateTime = updateTime;
    }
}