admin
2020-05-19 744594ef1a2f530fc3e86ea9dc48b62247f79420
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
package com.yeshi.fanli.vo.goods;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import com.google.gson.annotations.Expose;
 
/**
 * 券信息
 * 
 * @author Administrator
 *
 */
public class CouponInfoVO implements Serializable {
    /**
     * 
     */
    private static final long serialVersionUID = 1L;
 
    @Expose
    private int totalCount;// 总数量
    @Expose
    private int leftCount;// 剩余数量
    @Expose
    private BigDecimal amount;// 券面额
    @Expose
    private BigDecimal startFee;// 使用开始金额
    @Expose
    private String startTime;// 开始时间
    @Expose
    private String endTime;// 结束时间
    @Expose
    private String link;// 券链接
    @Expose
    private String token; // 券口令
    @Expose
    private boolean shopCoupon;// 是否为店铺券
 
    public boolean isShopCoupon() {
        return shopCoupon;
    }
 
    public void setShopCoupon(boolean shopCoupon) {
        this.shopCoupon = shopCoupon;
    }
 
    public int getTotalCount() {
        return totalCount;
    }
 
    public void setTotalCount(int totalCount) {
        this.totalCount = totalCount;
    }
 
    public int getLeftCount() {
        return leftCount;
    }
 
    public void setLeftCount(int leftCount) {
        this.leftCount = leftCount;
    }
 
    public BigDecimal getAmount() {
        return amount;
    }
 
    public void setAmount(BigDecimal amount) {
        this.amount = amount;
    }
 
    public BigDecimal getStartFee() {
        return startFee;
    }
 
    public void setStartFee(BigDecimal startFee) {
        this.startFee = startFee;
    }
 
    public String getStartTime() {
        return startTime;
    }
 
    public void setStartTime(String startTime) {
        this.startTime = startTime;
    }
 
    public String getEndTime() {
        return endTime;
    }
 
    public void setEndTime(String endTime) {
        this.endTime = endTime;
    }
 
    public String getLink() {
        return link;
    }
 
    public void setLink(String link) {
        this.link = link;
    }
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
}