yujian
2019-02-26 f2c91f920851153695d29ab047328801974cd459
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
package com.yeshi.fanli.vo.user;
 
import java.io.Serializable;
import java.util.Map;
 
import com.google.gson.annotations.Expose;
import com.yeshi.fanli.entity.bus.user.UserSystemCoupon;
 
public class UserSystemCouponVO extends UserSystemCoupon implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    // 顶部图片
    @Expose
    private String topPicture;
    
    // 券名称
    @Expose
     private String couponName;
    // 券图片
    @Expose
     private String couponPicture;
    // 券作用
    @Expose
     private String couponEffect;
    // 券规则
    @Expose
     private String couponRule;
    // 有效期
    @Expose
     private String couponTerm;
    // 使用中说明
    @Expose
     private String inUseExplain;
    
    // 跳转按钮
    @Expose
     private Map<String, Object> jumpBtn;
    // 剩下天数
    @Expose
     private Map<String, Object> remainDays;
    
 
    public String getTopPicture() {
        return topPicture;
    }
 
    public void setTopPicture(String topPicture) {
        this.topPicture = topPicture;
    }
 
    public String getCouponTerm() {
        return couponTerm;
    }
 
    public void setCouponTerm(String couponTerm) {
        this.couponTerm = couponTerm;
    }
 
    public Map<String, Object> getRemainDays() {
        return remainDays;
    }
 
    public void setRemainDays(Map<String, Object> remainDays) {
        this.remainDays = remainDays;
    }
 
    public String getCouponName() {
        return couponName;
    }
 
    public void setCouponName(String couponName) {
        this.couponName = couponName;
    }
 
    public String getCouponPicture() {
        return couponPicture;
    }
 
    public void setCouponPicture(String couponPicture) {
        this.couponPicture = couponPicture;
    }
 
    public String getCouponEffect() {
        return couponEffect;
    }
 
    public void setCouponEffect(String couponEffect) {
        this.couponEffect = couponEffect;
    }
 
    public String getCouponRule() {
        return couponRule;
    }
 
    public void setCouponRule(String couponRule) {
        this.couponRule = couponRule;
    }
 
    public Map<String, Object> getJumpBtn() {
        return jumpBtn;
    }
 
    public void setJumpBtn(Map<String, Object> jumpBtn) {
        this.jumpBtn = jumpBtn;
    }
 
    public String getInUseExplain() {
        return inUseExplain;
    }
 
    public void setInUseExplain(String inUseExplain) {
        this.inUseExplain = inUseExplain;
    }
 
}