admin
2021-04-23 d297d57c6e460e44b123bd6aa8608745a4d5d037
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
package com.yeshi.buwan.dto.tb;
 
import com.google.gson.annotations.Expose;
 
import java.math.BigDecimal;
 
//淘宝优惠券信息
public class TaoBaoQuanInfo {
    @Expose
    private int couponTotalCount;// 优惠券总数
    @Expose
    private int couponLeftCount;// 优惠券剩余数量
    @Expose
    private BigDecimal couponAmount;// 优惠金额
    @Expose
    private String couponInfo;// 优惠券信息
    @Expose
    private BigDecimal couponStartFee;// 优惠券起始优惠
    @Expose
    private String couponEffectiveStartTime;
    @Expose
    private String couponEffectiveEndTime;
    @Expose
    private BigDecimal couponPrice;// 券后价
    @Expose
    private String couponLink;// 券的链接
 
    public String getCouponLink() {
        return couponLink;
    }
 
    public void setCouponLink(String couponLink) {
        this.couponLink = couponLink;
    }
 
    public int getCouponTotalCount() {
        return couponTotalCount;
    }
 
    public void setCouponTotalCount(int couponTotalCount) {
        this.couponTotalCount = couponTotalCount;
    }
 
    public int getCouponLeftCount() {
        return couponLeftCount;
    }
 
    public void setCouponLeftCount(int couponLeftCount) {
        this.couponLeftCount = couponLeftCount;
    }
 
 
    public String getCouponInfo() {
        return couponInfo;
    }
 
    public void setCouponInfo(String couponInfo) {
        this.couponInfo = couponInfo;
    }
 
 
    public String getCouponEffectiveStartTime() {
        return couponEffectiveStartTime;
    }
 
    public void setCouponEffectiveStartTime(String couponEffectiveStartTime) {
        this.couponEffectiveStartTime = couponEffectiveStartTime;
    }
 
    public String getCouponEffectiveEndTime() {
        return couponEffectiveEndTime;
    }
 
    public void setCouponEffectiveEndTime(String couponEffectiveEndTime) {
        this.couponEffectiveEndTime = couponEffectiveEndTime;
    }
 
    public BigDecimal getCouponAmount() {
        return couponAmount;
    }
 
    public void setCouponAmount(BigDecimal couponAmount) {
        this.couponAmount = couponAmount;
    }
 
    public BigDecimal getCouponStartFee() {
        return couponStartFee;
    }
 
    public void setCouponStartFee(BigDecimal couponStartFee) {
        this.couponStartFee = couponStartFee;
    }
 
    public BigDecimal getCouponPrice() {
        return couponPrice;
    }
 
    public void setCouponPrice(BigDecimal couponPrice) {
        this.couponPrice = couponPrice;
    }
    
}