...
|
...
|
@@ -108,7 +108,7 @@ public class ProductIndexBaseService { |
|
|
productIndexIncludeFields.add(ProductIndexEsField.supplierId);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.sellType);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.isUfo);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.isVideo);
|
|
|
productIndexIncludeFields.add(ProductIndexEsField.hasVideo);
|
|
|
|
|
|
}
|
|
|
|
...
|
...
|
@@ -227,7 +227,7 @@ public class ProductIndexBaseService { |
|
|
productMap.put("sell_type", MapUtils.getIntValue(map, ProductIndexEsField.sellType, 0));
|
|
|
|
|
|
//是否视频商品
|
|
|
productMap.put("is_video", MapUtils.getString(map, ProductIndexEsField.isVideo, "N"));
|
|
|
productMap.put("has_video", MapUtils.getString(map, ProductIndexEsField.hasVideo, "N"));
|
|
|
|
|
|
//ufo
|
|
|
productMap.put("is_ufo", MapUtils.getString(map, ProductIndexEsField.isUfo, "N"));
|
...
|
...
|
|