zxl
2025-06-19 8063ee7eee51bfe25a09428e6efc60f828b270c6
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;
}