提交 | 用户 | age
|
0937f1
|
1 |
package com.hz.his.dto.user.coupon; |
W |
2 |
|
|
3 |
|
|
4 |
import lombok.Data; |
|
5 |
|
|
6 |
import java.math.BigDecimal; |
148b9a
|
7 |
import java.util.List; |
0937f1
|
8 |
|
W |
9 |
/** |
|
10 |
* @author wzh |
|
11 |
* 判断订单是否可用该优惠券的订单信息 |
|
12 |
* */ |
|
13 |
@Data |
|
14 |
public class OrderItemCouponDto { |
|
15 |
/**商品类型*/ |
1d2089
|
16 |
private Integer goodsType; |
W |
17 |
/**his商品类型*/ |
|
18 |
private String hisGoodsType; |
0937f1
|
19 |
/**商品标识*/ |
W |
20 |
private String goodsId; |
|
21 |
/**sku标识*/ |
|
22 |
private String goodsSkuId; |
|
23 |
/**购买商品数量*/ |
|
24 |
private Integer goodsNum; |
|
25 |
/**订单金额*/ |
|
26 |
private BigDecimal total; |
148b9a
|
27 |
/**所属商品分类标识*/ |
F |
28 |
private List<String> goodsTypeList; |
15b964
|
29 |
|
W |
30 |
/**单个商品金额*/ |
|
31 |
private BigDecimal price; |
|
32 |
/**购买数量*/ |
|
33 |
private Integer buyNum; |
0937f1
|
34 |
} |