From dd3851dbdf3d70508f251c3a6b147ddf131829a0 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 23 Jan 2026 17:25:51 +0800 Subject: [PATCH] =?UTF-8?q?=E7=83=AD=E6=B8=B8=E7=BC=93=E5=AD=98=E6=B3=A8?= =?UTF-8?q?=E9=87=8A=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../red/circle/other/app/service/game/HotGameServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/HotGameServiceImpl.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/HotGameServiceImpl.java index 6eec4a61..7d1e8e6b 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/HotGameServiceImpl.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/HotGameServiceImpl.java @@ -144,7 +144,7 @@ public class HotGameServiceImpl implements HotGameService { String cacheKey = VIP_LEVEL_CACHE_KEY + userId; Object cachedLevel = redisService.redisTemplate().opsForValue().get(cacheKey); if (cachedLevel != null) { - //return Integer.parseInt(cachedLevel.toString()); + return Integer.parseInt(cachedLevel.toString()); } LocalDate firstRechargeDate = userActivityRechargeService.getFirstRechargeDate(userId, VIP_ACTIVITY_ID);