活动奖励方法 增加邀请活动特殊处理

This commit is contained in:
tianfeng 2026-03-06 19:20:27 +08:00
parent c345bca474
commit db8930a76e

View File

@ -261,7 +261,7 @@ public class WeeklyRewardsSentManager {
RankingActivityRecord user = topUsers.get(i);
// 判断金额是否达到100K如果没有则跳过不发奖励
if (user.getQuantity() == null || user.getQuantity() < 100000) {
if ((user.getQuantity() == null || user.getQuantity() < 100000) && !Objects.equals(activityId, 2029445310384295938L)) {
log.warn("活动奖励 - 排名: {}, 用户ID: {}, 金额: {} 未达到100K要求跳过发奖励",
i + 1, user.getUserId(), user.getQuantity());
continue;