wangrenhuang
2022-08-11 0b8c09cba16691c4251c61e3a34ab19b33162d7a
提交 | 用户 | 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;
8
9 /**
10  * @author wzh
11  * 商品可用优惠券扩展
12  * */
13 @Data
14 public class GoodsCanUseCouponDto extends PageDto {
15     /**用户标识*/
16     private String userId;
17     /**sku标识*/
18     private String skuId;
19     /**商品类型*/
1d2089 20     private Integer goodType;
W 21     /**his商品类型*/
22     private String hisGoodType;
4b7183 23     /**商品金额*/
W 24     private BigDecimal price;
25 }