yujian
2019-05-14 ad9fbd2c18f280ef9bba47f28353d367cf2d94e8
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
package com.yeshi.fanli.entity.taobao;
 
import java.math.BigDecimal;
import java.util.List;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
 
public class TaoBaoGoodsBriefExtra extends TaoBaoGoodsBrief {
 
    @Expose
    private boolean baoyou;
    @Expose
    private int shopType;// 0-无 1-淘宝 2-天猫
    @Expose
    private TaoBaoQuanInfo taoBaoQuanInfo;
    @Expose
    private TaoBaoHongBaoInfo taoBaoHongBaoInfo;
    @Expose
    private int showType;// 0-没有红包与券 1-只有券 2-只有红包 3-有券和红包
    @Expose
    private BigDecimal quanPrice; // 券后价
    @Expose
    private String tbToken;
    @Expose
    private int collected; // 0-没有收藏 1-已收藏
    
    @Expose
    private int moneyType;////资金类型1-返  2-奖
    
    @Expose
    private List<ClientTextStyleVO> labels;////标签
    
    @Expose
    private int salesType;//销量类型:1-月销量  2-2小时销量  3-今日销量
    
    
 
    public int getMoneyType() {
        return moneyType;
    }
 
    public void setMoneyType(int moneyType) {
        this.moneyType = moneyType;
    }
 
    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 String getTbToken() {
        return tbToken;
    }
 
    public void setTbToken(String tbToken) {
        this.tbToken = tbToken;
    }
 
    public BigDecimal getQuanPrice() {
        return quanPrice;
    }
 
    public void setQuanPrice(BigDecimal quanPrice) {
        this.quanPrice = quanPrice;
    }
 
    public int getShowType() {
        return showType;
    }
 
    public void setShowType(int showType) {
        this.showType = showType;
    }
 
    public boolean isBaoyou() {
        return baoyou;
    }
 
    public void setBaoyou(boolean baoyou) {
        this.baoyou = baoyou;
    }
 
    public int getShopType() {
        return shopType;
    }
 
    public void setShopType(int shopType) {
        this.shopType = shopType;
    }
 
    public TaoBaoQuanInfo getTaoBaoQuanInfo() {
        return taoBaoQuanInfo;
    }
 
    public void setTaoBaoQuanInfo(TaoBaoQuanInfo taoBaoQuanInfo) {
        this.taoBaoQuanInfo = taoBaoQuanInfo;
    }
 
    public TaoBaoHongBaoInfo getTaoBaoHongBaoInfo() {
        return taoBaoHongBaoInfo;
    }
 
    public void setTaoBaoHongBaoInfo(TaoBaoHongBaoInfo taoBaoHongBaoInfo) {
        this.taoBaoHongBaoInfo = taoBaoHongBaoInfo;
    }
 
    public int getCollected() {
        return collected;
    }
 
    public void setCollected(int collected) {
        this.collected = collected;
    }
 
}