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;
|
}
|