Pu Zhibing
2025-05-26 ea1a62ba6484d6c6cb1ca67dcea938a95ba18fc6
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
package com.ruoyi.member.domain.dto;
 
import com.ruoyi.system.api.domain.dto.MerBaseDto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
import java.util.List;
 
/**
 * @ClassName MerGoodsCouponListDto
 * @Description TODO
 * @Author jqs
 * @Date 2023/7/19 17:26
 * @Version 1.0
 */
@Data
public class MerGoodsCouponListDto extends MerBaseDto {
 
    @ApiModelProperty(value = "会员用户id")
    private Long memberUserId;
 
    @ApiModelProperty(value = "商品id 可不传 传了只获取对应商品可用优惠券")
    private String goodsId;
 
    @ApiModelProperty(value = "已选优惠券表 可不传 和goodsId关联 传了自动过滤非本goodsId已选优惠券")
    private List<MemberSelectCouponDto> goodsCpuponList;
 
    @ApiModelProperty(value = "购买数量 可不传 和salesPrice关联 传了自动过滤不满足金额门槛的优惠券")
    private Integer buyNum;
 
    @ApiModelProperty(value = "商品售价 可不传 和buyNum关联 传了自动过滤不满足金额门槛的满减优惠券")
    private BigDecimal salesPrice;
 
 
}