|
@@ -18,20 +18,20 @@ public class EsProduct implements Serializable {
|
|
|
private static final long serialVersionUID = -1L;
|
|
|
@Id
|
|
|
private Long id;
|
|
|
- @Field(index = false)
|
|
|
+ @Field(type = FieldType.Keyword)
|
|
|
private String productSn;
|
|
|
private Long brandId;
|
|
|
- @Field(index = false)
|
|
|
+ @Field(type = FieldType.Keyword)
|
|
|
private String brandName;
|
|
|
private Long productCategoryId;
|
|
|
- @Field(index = false)
|
|
|
+ @Field(type = FieldType.Keyword)
|
|
|
private String productCategoryName;
|
|
|
private String pic;
|
|
|
- @Field(analyzer = "ik_max_word")
|
|
|
+ @Field(analyzer = "ik_max_word",type = FieldType.Text)
|
|
|
private String name;
|
|
|
- @Field(analyzer = "ik_max_word")
|
|
|
+ @Field(analyzer = "ik_max_word",type = FieldType.Text)
|
|
|
private String subTitle;
|
|
|
- @Field(analyzer = "ik_max_word")
|
|
|
+ @Field(analyzer = "ik_max_word",type = FieldType.Text)
|
|
|
private String keywords;
|
|
|
private BigDecimal price;
|
|
|
private Integer sale;
|