From 70def00bde0a351089150b5ee8480f7b9241ac49 Mon Sep 17 00:00:00 2001 From: "autumn.g@foxmail.com" Date: Wed, 9 Aug 2023 17:00:00 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=93=E7=AE=97=E8=AE=A2=E5=8D=95=E9=80=BB?= =?UTF-8?q?=E8=BE=91=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../jsowell/pile/service/impl/OrderBasicInfoServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 30aac29c1..0a0ecf099 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 @@ -815,12 +815,12 @@ public class OrderBasicInfoServiceImpl implements IOrderBasicInfoService { BigDecimal principalPay = null; BigDecimal giftPay = null; - OrderPayRecord principalPayRecord = payRecordMap.get("1"); + OrderPayRecord principalPayRecord = payRecordMap.get(Constants.ONE); if (principalPayRecord != null) { principalPay = principalPayRecord.getPayAmount(); } - OrderPayRecord giftPayRecord = payRecordMap.get("2"); + OrderPayRecord giftPayRecord = payRecordMap.get(Constants.TWO); if (giftPayRecord != null) { giftPay = giftPayRecord.getPayAmount(); }