From c77d450b2168a275277c2dd6c66467cc5ffdb28b Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Sat, 21 Mar 2026 17:59:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=A8=E9=87=8AV6=E6=8C=87=E5=AE=9A=E7=99=BD?= =?UTF-8?q?=E5=90=8D=E5=8D=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/infra/gateway/user/UserProfileGatewayImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/gateway/user/UserProfileGatewayImpl.java b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/gateway/user/UserProfileGatewayImpl.java index 32f44076..95603ec6 100644 --- a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/gateway/user/UserProfileGatewayImpl.java +++ b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/gateway/user/UserProfileGatewayImpl.java @@ -505,7 +505,7 @@ public class UserProfileGatewayImpl implements UserProfileGateway { @Override public boolean getUserVipAbility(Long userId, VipAbilityType abilityType) { - if (!inWhiteList(userId)) return false; +// if (!inWhiteList(userId)) return false; if (!abilityType.hasAbility(resolveUserVipName(userId))) return false; return userVipAbilitySettingService.isEnabled(userId, abilityType); } @@ -543,7 +543,7 @@ public class UserProfileGatewayImpl implements UserProfileGateway { @Override public BigDecimal getUserVipBenefit(Long userId, VipBenefitType benefitType) { - if (!inWhiteList(userId)) return BigDecimal.ONE; +// if (!inWhiteList(userId)) return BigDecimal.ONE; return benefitType.getValue(resolveUserVipName(userId)); }