Authored by chenchao

fix bug :overflow price tips key

@@ -190,7 +190,7 @@ public class SellerOrderListService extends AbsOrderListService implements IOrde @@ -190,7 +190,7 @@ public class SellerOrderListService extends AbsOrderListService implements IOrde
190 190
191 191
192 private String overFlowPriceKey(Integer storageId, BigDecimal salePrice){ 192 private String overFlowPriceKey(Integer storageId, BigDecimal salePrice){
193 - return new StringBuilder(storageId).append(salePrice).toString(); 193 + return new StringBuilder().append(storageId).append("_").append(salePrice).toString();
194 } 194 }
195 /** 195 /**
196 * TODO 需要商品提供批量接口,减少db net IO, 目前的工期太短,后期再优化 196 * TODO 需要商品提供批量接口,减少db net IO, 目前的工期太短,后期再优化