提交 | 用户 | 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 |
f5e3fe
|
11 |
* 商品SKU可用优惠券扩展 |
4b7183
|
12 |
* */ |
W |
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; |
f5e3fe
|
25 |
/**数量*/ |
F |
26 |
private Integer num; |
4b7183
|
27 |
} |