zxl
2025-10-11 3b2c5fb47caca6ab286e0c8ed8c0575024c528d0
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;
 
 
}