fhx
2023-08-01 4a3c41eed5a83721ab4bddd104f0a4a25a05b2fc
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
26
27
28
29
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 String groupBuyId;
    /**商品类型*/
    private Integer goodType;
    /**his商品类型*/
    private String hisGoodType;
    /**平台*/
    private String platform;
    /**sku标识*/
    private List<String> couponIdList;
    /**sku标识*/
    private List<GoodsCanUseCouponDto> goodsCanUseCouponDtoList;
}