yujian
2019-01-22 88b54772dbcf5ecab1e2316e4e4626ac901b8908
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
package com.yeshi.fanli.entity.taobao;
 
import java.math.BigDecimal;
 
import com.google.gson.annotations.Expose;
 
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-已收藏
 
    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;
    }
 
}