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)); }