peng
2 天以前 aac2321d1cf5536f7ea03f30d55a4aba30fbf710
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package cn.lili.modules.lmk.domain.vo;
 
import cn.lili.base.AbsVo;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import org.springframework.data.elasticsearch.annotations.Field;
import org.springframework.data.elasticsearch.annotations.FieldType;
 
/**
 * @author:xp
 * @date:2025/6/16 9:11
 */
@Data
@ApiModel("视频商品详情")
public class VideoGoodsDetailVO {
 
    @ApiModelProperty("商品id")
    @Field(type = FieldType.Keyword)
    private String goodsId;
 
    @ApiModelProperty("商品skuid")
    @Field(type = FieldType.Keyword)
    private String id;
 
    @ApiModelProperty("商品名称")
    @Field(type = FieldType.Text, searchAnalyzer = "ik_max_word")
    private String goodsName;
 
    @ApiModelProperty("价格")
    @Field(type = FieldType.Keyword)
    private String price;
 
    @ApiModelProperty("缩略图")
    @Field(type = FieldType.Keyword)
    private String thumbnail;
 
    @ApiModelProperty("商品数量")
    @Field(type = FieldType.Keyword)
    private Integer goodsNum;
}