热游缓存注释修复

This commit is contained in:
tianfeng 2026-01-23 17:25:51 +08:00
parent bc973c1bcc
commit dd3851dbdf

View File

@ -144,7 +144,7 @@ public class HotGameServiceImpl implements HotGameService {
String cacheKey = VIP_LEVEL_CACHE_KEY + userId; String cacheKey = VIP_LEVEL_CACHE_KEY + userId;
Object cachedLevel = redisService.redisTemplate().opsForValue().get(cacheKey); Object cachedLevel = redisService.redisTemplate().opsForValue().get(cacheKey);
if (cachedLevel != null) { if (cachedLevel != null) {
//return Integer.parseInt(cachedLevel.toString()); return Integer.parseInt(cachedLevel.toString());
} }
LocalDate firstRechargeDate = userActivityRechargeService.getFirstRechargeDate(userId, VIP_ACTIVITY_ID); LocalDate firstRechargeDate = userActivityRechargeService.getFirstRechargeDate(userId, VIP_ACTIVITY_ID);