peng
2025-10-30 f36b7e71b90d58766638b06a714417be3c5b45c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package cn.lili.modules.goods.entity.vos;
 
import cn.lili.modules.goods.entity.dos.Commodity;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 直播商品VO
 *
 * @author Bulbasaur
 * @since 2021/5/26 6:09 下午
 */
@Data
public class CommodityVO extends Commodity {
 
    @ApiModelProperty(value = "SKU库存")
    private Integer quantity;
 
    @ApiModelProperty(value = "店铺名称")
    private String storeName;
}