admin
2019-11-23 486e22c57ca8a1e2dc6877b539e2f3add67250f1
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
package com.yeshi.fanli.entity.jd;
 
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
 
import com.yeshi.fanli.dto.jd.JDCategoryInfo;
import com.yeshi.fanli.dto.jd.JDCommissionInfo;
import com.yeshi.fanli.dto.jd.JDCouponInfo;
import com.yeshi.fanli.dto.jd.JDPingouInfo;
import com.yeshi.fanli.dto.jd.JDShopInfo;
 
/**
 * 京东商品
 * 
 * @author Administrator
 *
 */
public class JDGoods implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
    private JDCategoryInfo categoryInfo;// 类目信息
    private Long comments;// 评论数
    private JDCommissionInfo commissionInfo;// 佣金信息
    private List<JDCouponInfo> couponInfoList;// 优惠券信息,返回内容为空说明该SKU无可用优惠券
    private BigDecimal goodCommentsShare;// 商品好评率
    private List<String> imageList;// 图片信息
    private Long inOrderCount30Days;// 30天引单数量
    private String materialUrl;// 商品落地页
    private BigDecimal price;// 价格信息
    private JDShopInfo shopInfo;// 店铺信息
    private Long skuId;// 商品ID
    private String skuName;// 商品名称
    private String picUrl;// 商品图片
    private Integer isHot;// 是否爆款,1:是,0:否
    private Long spuid;// spuid,其值为同款商品的主skuid
    private String brandCode;// 品牌code
    private String brandName;// 品牌名
    private String owner;// g=自营,p=pop
    private JDPingouInfo pinGouInfo;// 拼购信息
    private Long totalCount;// 有效商品总数量
    private Integer isFreeShipping; // 是否包邮(1:是,0:否,2:自营商品遵从主站包邮规则)
 
    private BigDecimal commissionPlus;// 佣金比例 : 京东plus会员
 
    public JDCategoryInfo getCategoryInfo() {
        return categoryInfo;
    }
 
    public void setCategoryInfo(JDCategoryInfo categoryInfo) {
        this.categoryInfo = categoryInfo;
    }
 
    public Long getComments() {
        return comments;
    }
 
    public void setComments(Long comments) {
        this.comments = comments;
    }
 
    public JDCommissionInfo getCommissionInfo() {
        return commissionInfo;
    }
 
    public void setCommissionInfo(JDCommissionInfo commissionInfo) {
        this.commissionInfo = commissionInfo;
    }
 
    public List<JDCouponInfo> getCouponInfoList() {
        return couponInfoList;
    }
 
    public void setCouponInfoList(List<JDCouponInfo> couponInfoList) {
        this.couponInfoList = couponInfoList;
    }
 
    public BigDecimal getGoodCommentsShare() {
        return goodCommentsShare;
    }
 
    public void setGoodCommentsShare(BigDecimal goodCommentsShare) {
        this.goodCommentsShare = goodCommentsShare;
    }
 
    public List<String> getImageList() {
        return imageList;
    }
 
    public void setImageList(List<String> imageList) {
        this.imageList = imageList;
    }
 
    public Long getInOrderCount30Days() {
        return inOrderCount30Days;
    }
 
    public void setInOrderCount30Days(Long inOrderCount30Days) {
        this.inOrderCount30Days = inOrderCount30Days;
    }
 
    public String getMaterialUrl() {
        return materialUrl;
    }
 
    public void setMaterialUrl(String materialUrl) {
        this.materialUrl = materialUrl;
    }
 
    public BigDecimal getPrice() {
        return price;
    }
 
    public void setPrice(BigDecimal price) {
        this.price = price;
    }
 
    public JDShopInfo getShopInfo() {
        return shopInfo;
    }
 
    public void setShopInfo(JDShopInfo shopInfo) {
        this.shopInfo = shopInfo;
    }
 
    public Long getSkuId() {
        return skuId;
    }
 
    public void setSkuId(Long skuId) {
        this.skuId = skuId;
    }
 
    public String getSkuName() {
        return skuName;
    }
 
    public void setSkuName(String skuName) {
        this.skuName = skuName;
    }
 
    public Integer getIsHot() {
        return isHot;
    }
 
    public void setIsHot(Integer isHot) {
        this.isHot = isHot;
    }
 
    public Long getSpuid() {
        return spuid;
    }
 
    public void setSpuid(Long spuid) {
        this.spuid = spuid;
    }
 
    public String getBrandCode() {
        return brandCode;
    }
 
    public void setBrandCode(String brandCode) {
        this.brandCode = brandCode;
    }
 
    public String getBrandName() {
        return brandName;
    }
 
    public void setBrandName(String brandName) {
        this.brandName = brandName;
    }
 
    public String getOwner() {
        return owner;
    }
 
    public void setOwner(String owner) {
        this.owner = owner;
    }
 
    public JDPingouInfo getPinGouInfo() {
        return pinGouInfo;
    }
 
    public void setPinGouInfo(JDPingouInfo pinGouInfo) {
        this.pinGouInfo = pinGouInfo;
    }
 
    public Long getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(Long totalCount) {
        this.totalCount = totalCount;
    }
 
    public String getPicUrl() {
        return picUrl;
    }
 
    public void setPicUrl(String picUrl) {
        this.picUrl = picUrl;
    }
 
    public Integer getIsFreeShipping() {
        return isFreeShipping;
    }
 
    public void setIsFreeShipping(Integer isFreeShipping) {
        this.isFreeShipping = isFreeShipping;
    }
 
    public BigDecimal getCommissionPlus() {
        return commissionPlus;
    }
 
    public void setCommissionPlus(BigDecimal commissionPlus) {
        this.commissionPlus = commissionPlus;
    }
}