yj
2021-05-07 788b776c5ecffe9989b57eb17fd1eb9ca4cf5f0d
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
package com.ks.lijin.pojo.DTO.taobao;
 
import java.math.BigDecimal;
import java.util.Date;
 
 
public class CommonGoods {
    public static int GOODS_TYPE_TB = 1;// 淘宝天猫
    public static int GOODS_TYPE_JD = 2;// 京东
    public static int GOODS_TYPE_PDD = 3;// 拼多多
 
    public static int SHOP_TYPE_TB = 1;// 淘宝
    public static int SHOP_TYPE_TM = 2;// 天猫
    public static int SHOP_TYPE_JD = 20;// 京东
    public static int SHOP_TYPE_JD_SELF = 21;// 京东自营
    public static int SHOP_TYPE_PDD = 30;// 拼多多
 
    public static int STATE_NORMAL = 0;// 正常
    public static int STATE_OFFLINE = 1;// 下线
 
    private Long id;
    private String title;
    private Long goodsId;// 第三方商品ID
    private Integer goodsType;// 第三方类型
    private Integer shopType;
    private Long sellerId;
    private String sellerName;
    private Integer sales;
    private BigDecimal rate;
    private String picture;
    private String pictureWhite;
    private Integer state;
    private BigDecimal price;
    private String couponInfo;
    private BigDecimal couponStartPrice;
    private BigDecimal couponAmount;
    private Integer couponLeftCount;
    private Integer couponTotalCount;
    private String videoCover;
    private String videoUrl;
    private Integer materialLibType;// 物料库类型 1-营销商品库 0-非营销商品库
    private String otherInfo; // 商品其他信息-json字符串
 
    public CommonGoods() {
    }
 
    public CommonGoods(Long id) {
        this.id = id;
    }
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public Integer getMaterialLibType() {
        return materialLibType;
    }
 
    public void setMaterialLibType(Integer materialLibType) {
        this.materialLibType = materialLibType;
    }
 
    public Integer getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(Integer goodsType) {
        this.goodsType = goodsType;
    }
 
    public Integer getShopType() {
        return shopType;
    }
 
    public void setShopType(Integer shopType) {
        this.shopType = shopType;
    }
 
    public Long getSellerId() {
        return sellerId;
    }
 
    public void setSellerId(Long sellerId) {
        this.sellerId = sellerId;
    }
 
    public String getSellerName() {
        return sellerName;
    }
 
    public void setSellerName(String sellerName) {
        this.sellerName = sellerName;
    }
 
    public Integer getSales() {
        return sales;
    }
 
    public void setSales(Integer sales) {
        this.sales = sales;
    }
 
    public BigDecimal getRate() {
        return rate;
    }
 
    public void setRate(BigDecimal rate) {
        this.rate = rate;
    }
 
    public String getPicture() {
        return picture;
    }
 
    public void setPicture(String picture) {
        this.picture = picture;
    }
 
    public Integer getState() {
        return state;
    }
 
    public void setState(Integer state) {
        this.state = state;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public String getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(String couponInfo) {
        this.couponInfo = couponInfo;
    }
 
    public BigDecimal getCouponStartPrice() {
        return couponStartPrice;
    }
 
    public void setCouponStartPrice(BigDecimal couponStartPrice) {
        this.couponStartPrice = couponStartPrice;
    }
 
    public BigDecimal getCouponAmount() {
        return couponAmount;
    }
 
    public void setCouponAmount(BigDecimal couponAmount) {
        this.couponAmount = couponAmount;
    }
 
    public Integer getCouponLeftCount() {
        return couponLeftCount;
    }
 
    public void setCouponLeftCount(Integer couponLeftCount) {
        this.couponLeftCount = couponLeftCount;
    }
 
    public Integer getCouponTotalCount() {
        return couponTotalCount;
    }
 
    public void setCouponTotalCount(Integer couponTotalCount) {
        this.couponTotalCount = couponTotalCount;
    }
 
    public String getVideoCover() {
        return videoCover;
    }
 
    public void setVideoCover(String videoCover) {
        this.videoCover = videoCover;
    }
 
    public String getVideoUrl() {
        return videoUrl;
    }
 
    public void setVideoUrl(String videoUrl) {
        this.videoUrl = videoUrl;
    }
 
    public String getPictureWhite() {
        return pictureWhite;
    }
 
    public void setPictureWhite(String pictureWhite) {
        this.pictureWhite = pictureWhite;
    }
 
    public String getOtherInfo() {
        return otherInfo;
    }
 
    public void setOtherInfo(String otherInfo) {
        this.otherInfo = otherInfo;
    }
    
}