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
package com.yeshi.fanli.vo.goods;
 
import java.math.BigDecimal;
import java.util.List;
 
import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
 
/**
 * 商品列表对象
 * 
 * @author Administrator
 *
 */
public class GoodsListVO {
    private Long goodsId;// 商品ID
    private int goodsType;// 商品类型
    private int shopType;// 类型 1-淘宝 2-天猫 3-京东 4-拼多多
    private CouponInfoVO couponInfo;// 券信息
    private MoneyInfoVO moneyInfo;// 资金信息
    private boolean hasCoupon;// 是否有券
    private BigDecimal couponPrice;// 券后价
    private BigDecimal zkPrice;// 正常售价
    private String shopTitle;// 店铺标题
    private String picUrl;// 图片链接
    private String title;// 标题
    private String salesCount;// 销量
    private List<ClientTextStyleVO> labels;//// 标签
    private int salesType;//// 销量类型:1-月销量 2-2小时销量 3-今日销量
    private List<String> imgList;
 
    public Long getGoodsId() {
        return goodsId;
    }
 
    public void setGoodsId(Long goodsId) {
        this.goodsId = goodsId;
    }
 
    public int getGoodsType() {
        return goodsType;
    }
 
    public void setGoodsType(int goodsType) {
        this.goodsType = goodsType;
    }
 
    public int getShopType() {
        return shopType;
    }
 
    public void setShopType(int shopType) {
        this.shopType = shopType;
    }
 
    public CouponInfoVO getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(CouponInfoVO couponInfo) {
        this.couponInfo = couponInfo;
    }
 
    public MoneyInfoVO getMoneyInfo() {
        return moneyInfo;
    }
 
    public void setMoneyInfo(MoneyInfoVO moneyInfo) {
        this.moneyInfo = moneyInfo;
    }
 
    public boolean isHasCoupon() {
        return hasCoupon;
    }
 
    public void setHasCoupon(boolean hasCoupon) {
        this.hasCoupon = hasCoupon;
    }
 
    public BigDecimal getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(BigDecimal couponPrice) {
        this.couponPrice = couponPrice;
    }
 
    public BigDecimal getZkPrice() {
        return zkPrice;
    }
 
    public void setZkPrice(BigDecimal zkPrice) {
        this.zkPrice = zkPrice;
    }
 
    public String getShopTitle() {
        return shopTitle;
    }
 
    public void setShopTitle(String shopTitle) {
        this.shopTitle = shopTitle;
    }
 
    public String getPicUrl() {
        return picUrl;
    }
 
    public void setPicUrl(String picUrl) {
        this.picUrl = picUrl;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getSalesCount() {
        return salesCount;
    }
 
    public void setSalesCount(String salesCount) {
        this.salesCount = salesCount;
    }
 
    public List<ClientTextStyleVO> getLabels() {
        return labels;
    }
 
    public void setLabels(List<ClientTextStyleVO> labels) {
        this.labels = labels;
    }
 
    public int getSalesType() {
        return salesType;
    }
 
    public void setSalesType(int salesType) {
        this.salesType = salesType;
    }
 
    public List<String> getImgList() {
        return imgList;
    }
 
    public void setImgList(List<String> imgList) {
        this.imgList = imgList;
    }
}