From a16c49890c35329b7c6e276479f716dcb1fa5054 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Mon, 1 Jun 2026 12:22:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E9=80=81=E5=A5=96=E5=8A=B1=E5=8E=BB?= =?UTF-8?q?=E9=99=A4=20100K=E9=97=A8=E6=A7=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activity/award/WeeklyRewardsSentManager.java | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/manager/activity/award/WeeklyRewardsSentManager.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/manager/activity/award/WeeklyRewardsSentManager.java index 8af93664..432be286 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/manager/activity/award/WeeklyRewardsSentManager.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/manager/activity/award/WeeklyRewardsSentManager.java @@ -256,13 +256,6 @@ public class WeeklyRewardsSentManager { try { RankingActivityRecord user = topUsers.get(i); - // 判断金额是否达到100K,如果没有则跳过不发奖励 - if ((user.getQuantity() == null || user.getQuantity() < 100000) && !Objects.equals(activityId, 2029445310384295938L)) { - log.warn("活动奖励 - 排名: {}, 用户ID: {}, 金额: {} 未达到100K要求,跳过发奖励", - i + 1, user.getUserId(), user.getQuantity()); - continue; - } - ActivityConfigRewardsDTO reward = rewardsDTOList.get(i); // 发送奖励 @@ -305,13 +298,6 @@ public class WeeklyRewardsSentManager { try { RankingActivityRecord user = topUsers.get(userIndex); - // 判断金额是否达到100K,如果没有则跳过不发奖励 - if (user.getQuantity() == null || user.getQuantity() < 100000) { - log.warn("活动奖励 - 排名: {}, 用户ID: {}, 金额: {} 未达到100K要求,跳过发奖励", - userIndex + 1, user.getUserId(), user.getQuantity()); - continue; - } - // 发送奖励 sendRewardToUser(sysOriginPlatformEnum, activityId, user.getUserId(), reward.getResourceGroupId(), SendPropsOrigin.RANKING_ACTIVITY);