Merge remote-tracking branch 'origin/test' into test

This commit is contained in:
2024-09-26 15:27:39 +08:00

View File

@@ -95,8 +95,8 @@ public class AlipayUtil {
log.error("获取支付宝用户信息失败,错误码:{},错误信息:{}", response.getSubCode(), response.getSubMsg());
throw new AlipayApiException(response.getSubCode(), response.getSubMsg());
}
//调用成功,则处理业务逻辑
return response.getOpenId();
//调用成功,则处理业务逻辑为配合支付系统确定沿用支付宝的老标准使用userId
return response.getUserId();
}
/**