shikeyin
2024-01-11 65da8373531677b1c37a98f53eaa30c892f35e5a
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
package com.ishop.model.response;
 
import java.io.Serializable;
 
/**
 * 用户下单可用优惠券
 * @date 2023-07-09
 */
public class CouponUserOrderResponse implements Serializable {
 
    public Long getId() {
        return id;
    }
 
    public void setId(Long id) {
        this.id = id;
    }
 
    public Integer getCouponId() {
        return couponId;
    }
 
    public void setCouponId(Integer couponId) {
        this.couponId = couponId;
    }
 
    public Integer getMerId() {
        return merId;
    }
 
    public void setMerId(Integer merId) {
        this.merId = merId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Integer getCategory() {
        return category;
    }
 
    public void setCategory(Integer category) {
        this.category = category;
    }
 
    public Double getMoney() {
        return money;
    }
 
    public void setMoney(Double money) {
        this.money = money;
    }
 
    public Double getMinPrice() {
        return minPrice;
    }
 
    public void setMinPrice(Double minPrice) {
        this.minPrice = minPrice;
    }
 
    public Integer getStatus() {
        return status;
    }
 
    public void setStatus(Integer status) {
        this.status = status;
    }
 
    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 Long getUseTime() {
        return useTime;
    }
 
    public void setUseTime(Long useTime) {
        this.useTime = useTime;
    }
 
    //    @ApiModelProperty(value = "id")
    private Long id;
 
//    @ApiModelProperty(value = "优惠券发布id")
    private Integer couponId;
 
//    @ApiModelProperty(value = "店铺id,平台为0")
    private Integer merId;
 
//    @ApiModelProperty(value = "优惠券名称")
    private String name;
 
//    @ApiModelProperty(value = "类别 1-商家券, 2-商品券, 3-平台券")
    private Integer category;
 
//    @ApiModelProperty(value = "优惠券的面值")
    private Double money;
 
//    @ApiModelProperty(value = "最低消费多少金额可用优惠券")
    private Double minPrice;
 
//    @ApiModelProperty(value = "状态(0:未使用,1:已使用, 2:已失效)")
    private Integer status;
 
//    @ApiModelProperty(value = "开始使用时间")
//    @JsonFormat(pattern = "yyyy-MM-dd")
    private String startTime;
 
//    @ApiModelProperty(value = "过期时间")
//    @JsonFormat(pattern = "yyyy-MM-dd")
    private String endTime;
 
//    @ApiModelProperty(value = "使用时间")
    private Long useTime;
}