xin
2025-07-04 1eee71ca750c806ee0e6d80a4fd44500ceff2ffa
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
package com.oying.modules.sh.domain.vo;
 
import com.oying.modules.pc.product.domain.Product;
import com.oying.modules.pc.product.domain.ProductLabel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
import java.util.List;
 
/**
 * @author xin
 * @description
 * @date 2025/7/4 15:45
 */
@Getter
@Setter
public class ProductInfo {
 
    @ApiModelProperty(value = "商品信息")
    private Product product;
    @ApiModelProperty(value = "商品标签")
    private List<ProductLabel> productLabels;
    @ApiModelProperty(value = "商品数量")
    private Integer count = 1;
}