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