xiangpei
2025-05-29 817c7de04cb6b74164a42ed0e6050ae5b91b0ef1
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
package cn.lili.modules.search.entity.dos;
 
import cn.lili.modules.search.entity.dto.ParamOptions;
import cn.lili.modules.search.entity.dto.SelectorOptions;
import lombok.Data;
 
import java.util.List;
 
/**
 * 搜索相关商品品牌名称,分类名称及属性
 *
 * @author paulG
 * @since 2020/10/20
 **/
@Data
public class EsGoodsRelatedInfo {
 
    /**
     * 分类集合
     */
    List<SelectorOptions> categories;
 
    /**
     * 品牌集合
     */
    List<SelectorOptions> brands;
 
    /**
     * 参数集合
     */
    List<ParamOptions> paramOptions;
 
 
}