liujie
2025-08-04 ddba15cfd1d654dc41de5dfdc587e12d96d84f4f
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
package com.stylefeng.guns.modular.shunfeng.model.vo;
 
 
 
public class CouponUserVo {
    /**
     * 优惠券id
     */
    private Integer id;
    /**
     * 优惠券名称
     */
    private String couponName;
    /**
     * 使用条件金额
     */
    private Integer money;
    /**
     * 用户领取可用金额
     */
    private Double usableMoney;
    /**
     * 过期时间
     */
    private String pastTime;
    /**
     * 优惠券类型(1注册、2分享、3活动、4验票)
     */
    private Integer type;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getCouponName() {
        return couponName;
    }
 
    public void setCouponName(String couponName) {
        this.couponName = couponName;
    }
 
    public Integer getMoney() {
        return money;
    }
 
    public void setMoney(Integer money) {
        this.money = money;
    }
 
    public Double getUsableMoney() {
        return usableMoney;
    }
 
    public void setUsableMoney(Double usableMoney) {
        this.usableMoney = usableMoney;
    }
 
    public String getPastTime() {
        return pastTime;
    }
 
    public void setPastTime(String pastTime) {
        this.pastTime = pastTime;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
}