zxl
2025-05-26 cd808c50609b54e71546f8050136ce0f3786daf0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.lili.modules.promotion.entity.vos;
 
import cn.lili.modules.goods.entity.dos.GoodsSku;
import cn.lili.modules.promotion.entity.dos.PointsGoods;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
/**
 * 积分商品视图对象
 *
 * @author paulG
 * @since 2021/1/13
 **/
@EqualsAndHashCode(callSuper = true)
@Data
public class PointsGoodsVO extends PointsGoods {
 
    private static final long serialVersionUID = -5163709626742905057L;
 
    @ApiModelProperty(value = "商品规格详细信息")
    private GoodsSku goodsSku;
 
}