Authored by zhaojun2

fix pi add brandkeyword

... ... @@ -12,7 +12,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
@SearchMqConsumerListerner(tableName = "activity_product")
@SearchMqConsumerListerner(tableName = "cs_brand_keyword")
public class CsBrandKeywordMqListener extends AbstractMqListener {
@Autowired
private CsBrandKeywordMapper csBrandKeywordMapper;
... ...
... ... @@ -33,6 +33,7 @@ public class ProductIndexBOToMapService {
map.put(ProductIndexEsField.brandNameEn, productIndexBO.getBrandNameEn());
map.put(ProductIndexEsField.brandKeyword, productIndexBO.getBrandKeyword());
map.put(ProductIndexEsField.brandName, productIndexBO.getBrandName());
map.put(ProductIndexEsField.csBrandKeyword, productIndexBO.getCsBrandKeyword());
map.put(ProductIndexEsField.style, productIndexBO.getStyle());
map.put(ProductIndexEsField.salesPhrase, productIndexBO.getSalesPhrase());
map.put(ProductIndexEsField.maxSortId, productIndexBO.getMaxSortId());
... ...