bug
jiangqs
2023-08-21 c93e76c57a98e35abbf62d2f514d9ba51efd3243
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
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 = "购买数量")
    private Integer buyNum;
 
    @ApiModelProperty(value = "商品售价")
    private BigDecimal salesPrice;
 
    @ApiModelProperty(value = "已选优惠券表")
    private List<MemberSelectCouponDto> goodsCpuponList;
}