Authored by 胡古飞

add bundleType field

@@ -16,6 +16,9 @@ @@ -16,6 +16,9 @@
16 "shopId": { 16 "shopId": {
17 "type": "long" 17 "type": "long"
18 }, 18 },
  19 + "bundleType": {
  20 + "type": "long"
  21 + },
19 "salesNum": { 22 "salesNum": {
20 "type": "long", 23 "type": "long",
21 "doc_values": true, 24 "doc_values": true,
@@ -199,6 +199,7 @@ public class ProductIndexService { @@ -199,6 +199,7 @@ public class ProductIndexService {
199 map.put("shopName", productIndexBO.getShopName()); 199 map.put("shopName", productIndexBO.getShopName());
200 map.put("shopDomain", productIndexBO.getShopDomain()); 200 map.put("shopDomain", productIndexBO.getShopDomain());
201 map.put("productAttrField", productIndexBO.getProductAttrField()); 201 map.put("productAttrField", productIndexBO.getProductAttrField());
  202 + map.put("bundleType", productIndexBO.getBundleType());
202 return map; 203 return map;
203 } 204 }
204 205