From bcc3979f9ca4d9b6e0fc79f9d4716a22f074379d Mon Sep 17 00:00:00 2001 From: Lemon Date: Mon, 12 Jun 2023 16:47:15 +0800 Subject: [PATCH] update --- .../jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java index 9f1b10781..6ef834f44 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java @@ -1654,6 +1654,8 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService { resultMap.put("orderCode", orderBasicInfo.getOrderCode()); resultMap.put("transactionCode", orderBasicInfo.getTransactionCode()); resultMap.put("accountBalance", totalAccountAmount); + + logger.info("生成订单 result:{}", JSON.toJSONString(resultMap)); return resultMap; }