jiangqs
2023-07-09 ed7cde0f64b01e95e11d6f66d1f27b05cea84332
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
package com.ruoyi.member.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @ClassName AppUnGetCouponPageVo
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/9 15:42
 * @Version 1.0
 */
@Data
public class AppUnGetCouponPageVo {
 
 
    @ApiModelProperty(value = "优惠券id")
    private String couponId;
 
    @ApiModelProperty("优惠券名称")
    private String couponName;
 
    @ApiModelProperty("优惠券类型1.满减2.折扣3.代金4.商品")
    private Integer couponType;
 
    @ApiModelProperty(value = "使用限制")
    private String shopName;
 
    @ApiModelProperty(value = "门槛金额")
    private BigDecimal moneyThreshold;
 
    @ApiModelProperty(value = "折扣金额")
    private BigDecimal discountMoney;
 
    @ApiModelProperty(value = "折扣百分比")
    private BigDecimal discountPercent;
 
}