Authored by chenchao

add new prop load value

@@ -45,6 +45,11 @@ public class ChargeGoods { @@ -45,6 +45,11 @@ public class ChargeGoods {
45 private boolean depositRequirement; 45 private boolean depositRequirement;
46 46
47 private BigDecimal storageManagementFee; 47 private BigDecimal storageManagementFee;
  48 +
  49 + /**
  50 + * 闪购非寄存订单
  51 + */
  52 + private BigDecimal quickDeliverServiceFee;
48 /** 53 /**
49 * 实际价格 54 * 实际价格
50 * 55 *
@@ -13,4 +13,8 @@ public class FeeNRate { @@ -13,4 +13,8 @@ public class FeeNRate {
13 * 仓储管理费 13 * 仓储管理费
14 */ 14 */
15 BigDecimal storageManagementFee; 15 BigDecimal storageManagementFee;
  16 + /**
  17 + * 闪购非寄存订单
  18 + */
  19 + BigDecimal quickDeliverServiceFee;
16 } 20 }
@@ -323,7 +323,6 @@ public class ProductProxyService extends AbsProxyService{ @@ -323,7 +323,6 @@ public class ProductProxyService extends AbsProxyService{
323 SkupTypeCodeSupport.CodeNode codeNode = SkupTypeCodeSupport.explain(skupa); 323 SkupTypeCodeSupport.CodeNode codeNode = SkupTypeCodeSupport.explain(skupa);
324 skupReq.setRegion(codeNode.getRegion()); 324 skupReq.setRegion(codeNode.getRegion());
325 } 325 }
326 -  
327 ApiResponse resp = ufoServiceCaller.call(syncSkup, skupReq); 326 ApiResponse resp = ufoServiceCaller.call(syncSkup, skupReq);
328 return (null == resp || null == resp.getData())? false : (boolean)resp.getData(); 327 return (null == resp || null == resp.getData())? false : (boolean)resp.getData();
329 } 328 }