银行卡提现校验姓名

This commit is contained in:
zs 2025-08-23 18:44:26 +08:00
parent ae927f9027
commit 4348f41b8d
1 changed files with 5 additions and 3 deletions

View File

@ -594,13 +594,15 @@ public class CashOutServiceImpl extends ServiceImpl<CashOutDao, CashOut> impleme
alipayAccount = userInfo.getZhiFuBao();
alipayName = userInfo.getZhiFuBaoName();
if (!userDetailInfo.getCertName().equals(alipayName)) {
return Result.error(9991, "认证名称不一致,请重新确认!");
}
} else {
alipayAccount = userDetailInfo.getAccountNo();
alipayName = userDetailInfo.getCertName();
}
if (!userDetailInfo.getCertName().equals(alipayName)) {
return Result.error(9991, "认证名称不一致,请重新确认!");
}
bankName = userDetailInfo.getBankName();
idCardNo = userDetailInfo.getCertNo();
withdrawCheckNameSet.add(alipayName);