Authored by 胡古飞

add bundleType field

... ... @@ -16,6 +16,9 @@
"shopId": {
"type": "long"
},
"bundleType": {
"type": "long"
},
"salesNum": {
"type": "long",
"doc_values": true,
... ...
... ... @@ -199,6 +199,7 @@ public class ProductIndexService {
map.put("shopName", productIndexBO.getShopName());
map.put("shopDomain", productIndexBO.getShopDomain());
map.put("productAttrField", productIndexBO.getProductAttrField());
map.put("bundleType", productIndexBO.getBundleType());
return map;
}
... ...