add vipLevels to beanToMap
Showing
1 changed file
with
1 additions
and
0 deletions
@@ -104,6 +104,7 @@ public class ProductIndexService { | @@ -104,6 +104,7 @@ public class ProductIndexService { | ||
104 | if (temp != null) { | 104 | if (temp != null) { |
105 | map.put("salesPrice", productIndexBO.getSalesPrice().doubleValue()); | 105 | map.put("salesPrice", productIndexBO.getSalesPrice().doubleValue()); |
106 | } | 106 | } |
107 | + map.put("vipLevels", productIndexBO.getVipLevels()); | ||
107 | temp = productIndexBO.getPromotionDiscount(); | 108 | temp = productIndexBO.getPromotionDiscount(); |
108 | if (temp != null) { | 109 | if (temp != null) { |
109 | map.put("promotionDiscount", productIndexBO.getPromotionDiscount().doubleValue()); | 110 | map.put("promotionDiscount", productIndexBO.getPromotionDiscount().doubleValue()); |
-
Please register or login to post a comment