Commit 216d1ba3 authored by 黎博's avatar 黎博

update /api/order/selectJdOrder

parent a5240a4f
...@@ -96,7 +96,7 @@ public class OrderController { ...@@ -96,7 +96,7 @@ public class OrderController {
result.put("orderTaxPrice", orderNakedPrice.multiply(TAX).setScale(2, BigDecimal.ROUND_HALF_UP)); result.put("orderTaxPrice", orderNakedPrice.multiply(TAX).setScale(2, BigDecimal.ROUND_HALF_UP));
response.put("result", result); response.put("result", result);
// 设置缓存,方便后面查询京东订单详情接口使用 // 设置缓存,方便后面查询京东订单详情接口使用
redisUtils.set(QYG_ORDER_PREFIX + jdOrderId, response, 604800); redisUtils.set(QYG_ORDER_PREFIX + jdOrderId, response.toJSONString(), 604800);
return response; return response;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment