From 5fd53533826a65ae678bd409d9d880dbd5ae1fb8 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Wed, 18 Mar 2026 18:02:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=98=A5=E8=8A=82=E6=B4=BB=E5=8A=A8=E7=BB=93?= =?UTF-8?q?=E6=9D=9F=20=E6=B8=B8=E6=88=8F=E7=A4=BC=E7=89=A9=E7=B4=AF?= =?UTF-8?q?=E8=AE=A1=E8=8E=B7=E6=8A=BD=E5=A5=96=E5=88=B8=E9=80=BB=E8=BE=91?= =?UTF-8?q?=E5=8E=BB=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/adapter/app/game/party3rd/GameHkysRestController.java | 2 +- .../red/circle/other/app/common/gift/GameLuckyGiftCommon.java | 2 +- .../circle/other/app/service/game/GameBaishunServiceImpl.java | 2 +- .../red/circle/other/app/service/game/HotGameServiceImpl.java | 2 +- .../red/circle/other/app/service/game/YomiGameServiceImpl.java | 2 +- .../rc-service-other/other-start/src/test/java/RedisTest.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/game/party3rd/GameHkysRestController.java b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/game/party3rd/GameHkysRestController.java index 1ce03c29..c4d775b4 100644 --- a/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/game/party3rd/GameHkysRestController.java +++ b/rc-service/rc-service-other/other-adapter/src/main/java/com/red/circle/other/adapter/app/game/party3rd/GameHkysRestController.java @@ -192,7 +192,7 @@ public class GameHkysRestController { gameActivityService.handleGameSpendTask(userId, cmd.getCoin()); // 累加用户获得的金币并发送抽奖券 - activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, Math.abs(cmd.getCoin()), MonthlyRechargeType.UNDEFINED); +// activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, Math.abs(cmd.getCoin()), MonthlyRechargeType.UNDEFINED); } else { updateRoomDailyTask(cmd.getCoin(), userId); diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/common/gift/GameLuckyGiftCommon.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/common/gift/GameLuckyGiftCommon.java index 7849a550..bf913f4d 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/common/gift/GameLuckyGiftCommon.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/common/gift/GameLuckyGiftCommon.java @@ -279,7 +279,7 @@ public class GameLuckyGiftCommon { } // 累加用户获得的金币并发送抽奖券 - activityRechargeTicketService.accumulatedRechargeAndAddTicket(param.getUserId(), rewardAmount, MonthlyRechargeType.LUCKY_WIN); +// activityRechargeTicketService.accumulatedRechargeAndAddTicket(param.getUserId(), rewardAmount, MonthlyRechargeType.LUCKY_WIN); } diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/GameBaishunServiceImpl.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/GameBaishunServiceImpl.java index 9dbb3e5e..fc13122d 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/GameBaishunServiceImpl.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/GameBaishunServiceImpl.java @@ -227,7 +227,7 @@ public class GameBaishunServiceImpl implements GameBaishunService { gameActivityService.handleGameSpendTask(userId, Math.abs(request.getCurrencyDiff())); // 累加用户获得的金币并发送抽奖券 - activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, request.getCurrencyDiff(), MonthlyRechargeType.UNDEFINED); +// activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, request.getCurrencyDiff(), MonthlyRechargeType.UNDEFINED); } else { updateRoomDailyTask(request.getCurrencyDiff(), userId); } 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 97253d9e..2ea9889b 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 @@ -331,7 +331,7 @@ public class HotGameServiceImpl implements HotGameService { gameActivityService.handleGameSpendTask(userId, param.getCoin()); // 累加用户获得的金币并发送抽奖券 - activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, Math.abs(param.getCoin()), MonthlyRechargeType.UNDEFINED); +// activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, Math.abs(param.getCoin()), MonthlyRechargeType.UNDEFINED); } // 处理游戏消费人任务 diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/YomiGameServiceImpl.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/YomiGameServiceImpl.java index 5ed5453f..cde85452 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/YomiGameServiceImpl.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/service/game/YomiGameServiceImpl.java @@ -185,7 +185,7 @@ public class YomiGameServiceImpl implements YomiGameService { gameActivityService.handleGameSpendTask(userId, changeValue.longValue()); // 累加用户获得的金币并发送抽奖券 - activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, Math.abs(changeValue.longValue()), MonthlyRechargeType.UNDEFINED); +// activityRechargeTicketService.accumulatedRechargeAndAddTicket(userId, Math.abs(changeValue.longValue()), MonthlyRechargeType.UNDEFINED); } else { updateRoomDailyTask(changeValue.longValue(), userId); } diff --git a/rc-service/rc-service-other/other-start/src/test/java/RedisTest.java b/rc-service/rc-service-other/other-start/src/test/java/RedisTest.java index e9cc60c1..ab1cfad3 100644 --- a/rc-service/rc-service-other/other-start/src/test/java/RedisTest.java +++ b/rc-service/rc-service-other/other-start/src/test/java/RedisTest.java @@ -64,8 +64,8 @@ public class RedisTest { @Test public void testRedis2(){ + // 春节活动 已结束 activityRechargeTicketService.accumulatedRechargeAndAddTicket(1957345312961527809L, 80000L, MonthlyRechargeType.UNDEFINED); - } /**