From bb593f2ad2fd377a28e2f1b8eadda6417bed8624 Mon Sep 17 00:00:00 2001 From: GYJ <1157756119@qq.com> Date: Sun, 23 Mar 2025 17:53:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E7=8E=B0=20=E9=99=90=E5=88=B6?= =?UTF-8?q?=E8=AE=A4=E8=AF=81=E5=A7=93=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/sqx/modules/pay/service/impl/CashOutServiceImpl.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java b/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java index 4e6462da..6442a2bc 100644 --- a/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java +++ b/src/main/java/com/sqx/modules/pay/service/impl/CashOutServiceImpl.java @@ -592,6 +592,10 @@ public class CashOutServiceImpl extends ServiceImpl impleme if (isAlipay) { alipayAccount = userInfo.getZhiFuBao(); alipayName = userInfo.getZhiFuBaoName(); + + if (!userDetailInfo.getCertName().equals(alipayName)) { + return Result.error(9991, "认证名称不一致,请重新确认!"); + } } else { alipayAccount = userDetailInfo.getAccountNo(); alipayName = userDetailInfo.getCertName();