puzhibing
2023-08-16 d5b3e5a413bcfccba294793ee093722f31b2448a
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
package com.supersavedriving.user.modular.system.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @date 2023/3/3 14:26
 */
@Data
@ApiModel
public class CouponWarpper {
    @ApiModelProperty("优惠券id")
    private Integer id;
    @ApiModelProperty("满金额")
    private Double couponConditionalAmount;
    @ApiModelProperty("优惠金额")
    private Double couponPreferentialAmount;
    @ApiModelProperty("优惠券名称")
    private String couponName;
    @ApiModelProperty("有效期")
    private Long expirationDate;
    @ApiModelProperty("张数")
    private Integer number;
}