提交 | 用户 | age
|
ad38f9
|
1 |
package com.hz.crm.dto.coupon; |
F |
2 |
|
|
3 |
|
|
4 |
import lombok.Data; |
|
5 |
|
6550d9
|
6 |
import java.math.BigDecimal; |
W |
7 |
import java.util.List; |
|
8 |
|
ad38f9
|
9 |
/** |
F |
10 |
* 商品扩展 |
|
11 |
* */ |
|
12 |
@Data |
|
13 |
public class CouponGoodsDto{ |
|
14 |
/**phisId*/ |
|
15 |
private String hisId; |
|
16 |
/**类型0商品1项目2促销3卡项*/ |
|
17 |
private String type; |
6550d9
|
18 |
private String userId; |
W |
19 |
private String commonId; |
|
20 |
private String couponId; |
|
21 |
private BigDecimal total; |
|
22 |
private List<String> ids; |
|
23 |
private String goodsType; |
|
24 |
private String keyWord; |
|
25 |
private Integer useType; |
ad38f9
|
26 |
|
F |
27 |
} |