...
|
...
|
@@ -69,6 +69,7 @@ public class WebProductIndexBaseService { |
|
|
productIndexIncludeFields.add(ProductIndexEsField.brandName);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.brandNameCn);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.brandNameEn);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.genderS);
|
|
|
}
|
|
|
|
|
|
public List<String> getWebProductIndexIncludeFields() {
|
...
|
...
|
@@ -134,6 +135,7 @@ public class WebProductIndexBaseService { |
|
|
productMap.put("brand_name", MapUtils.getString(map, ProductIndexEsField.brandName, ""));
|
|
|
productMap.put("brand_name_cn", MapUtils.getString(map, ProductIndexEsField.brandNameCn, ""));
|
|
|
productMap.put("brand_name_en", MapUtils.getString(map, ProductIndexEsField.brandNameEn, ""));
|
|
|
productMap.put("gender_s", MapUtils.getString(map, ProductIndexEsField.genderS, ""));
|
|
|
return productMap;
|
|
|
}
|
|
|
|
...
|
...
|
|