提交 | 用户 | age
|
f5e3fe
|
1 |
package com.hz.his.dto.user.coupon; |
F |
2 |
|
|
3 |
|
|
4 |
import com.hz.his.dto.PageDto; |
|
5 |
import lombok.Data; |
|
6 |
|
|
7 |
import java.util.List; |
|
8 |
|
|
9 |
/** |
|
10 |
* @author wzh |
|
11 |
* 商品SPU可用优惠券扩展 |
|
12 |
* */ |
|
13 |
@Data |
|
14 |
public class GoodsUsedCouponDto extends PageDto { |
|
15 |
/**用户标识*/ |
|
16 |
private String userId; |
|
17 |
/**商品类型*/ |
|
18 |
private Integer goodType; |
|
19 |
/**his商品类型*/ |
|
20 |
private String hisGoodType; |
|
21 |
/**平台*/ |
|
22 |
private String platform; |
|
23 |
/**sku标识*/ |
|
24 |
private List<GoodsCanUseCouponDto> goodsCanUseCouponDtoList; |
|
25 |
} |