fwq
2024-04-15 7285f70c4804d88c175ace932956eec524e2ceda
提交 | 用户 | age
4b7183 1 package com.hz.his.dto.user.coupon;
W 2
3
4 import com.hz.his.dto.PageDto;
5 import lombok.Data;
6
7 import java.math.BigDecimal;
9ea96d 8 import java.util.List;
4b7183 9
W 10 /**
11  * @author wzh
f5e3fe 12  * 商品SKU可用优惠券扩展
4b7183 13  * */
W 14 @Data
15 public class GoodsCanUseCouponDto extends PageDto {
16     /**用户标识*/
17     private String userId;
18     /**sku标识*/
19     private String skuId;
148b9a 20     /**spu商品分类*/
9ea96d 21     private List<String> typeList;
4b7183 22     /**商品类型*/
1d2089 23     private Integer goodType;
W 24     /**his商品类型*/
25     private String hisGoodType;
4b7183 26     /**商品金额*/
W 27     private BigDecimal price;
f5e3fe 28     /**数量*/
F 29     private Integer num;
4b7183 30 }