From 066503c3451a0e5242dff81fe58ff75c1986d496 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Wed, 27 May 2026 14:12:49 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=80=E8=AF=B7=E6=B4=BB=E5=8A=A8=E9=87=91?= =?UTF-8?q?=E5=B8=81=E5=A5=96=E5=8A=B1=E6=8C=A1=E4=BD=8D=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../red/circle/other/app/listener/task/TaskListener.java | 8 ++++---- .../user/user/impl/InviteUserClientServiceImpl.java | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/task/TaskListener.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/task/TaskListener.java index 1e5fc007..81aed752 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/task/TaskListener.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/listener/task/TaskListener.java @@ -378,8 +378,8 @@ public class TaskListener implements MessageListener { return; } - // 金币奖励发给邀请人A 500 - long gold = 500; + // 金币奖励发给邀请人A 5000 + long gold = 5000; walletGoldClient.changeBalance(GoldReceiptCmd.builder() .appIncome() .userId(userInviteUser.getUserId()) @@ -390,7 +390,7 @@ public class TaskListener implements MessageListener { .amount(BigDecimal.valueOf(gold)) .build()); - // 金币奖励发给邀请人B 450 + // 金币奖励发给邀请人B 5000 walletGoldClient.changeBalance(GoldReceiptCmd.builder() .appIncome() .userId(userInviteUser.getInviteUserId()) @@ -398,7 +398,7 @@ public class TaskListener implements MessageListener { .sysOrigin(userInviteUser.getSysOrigin()) .origin(GoldOrigin.INVITE_USER_REWARDS) .originDescribe(GoldOrigin.INVITE_USER_REWARDS.getDesc()) - .amount(BigDecimal.valueOf(450)) + .amount(BigDecimal.valueOf(5000)) .build()); inviteUserSummaryService.incrCommission(userInviteUser.getUserId(), BigDecimal.valueOf(gold)); diff --git a/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/InviteUserClientServiceImpl.java b/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/InviteUserClientServiceImpl.java index d158216a..4efd5d74 100644 --- a/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/InviteUserClientServiceImpl.java +++ b/rc-service/rc-service-other/other-inner-endpoint/src/main/java/com/red/circle/other/app/inner/service/user/user/impl/InviteUserClientServiceImpl.java @@ -76,9 +76,9 @@ public class InviteUserClientServiceImpl implements InviteUserClientService { private static final long TIER3_PROPS_ID = 2029449364032438273L; // 档位金币奖励 - private static final long TIER1_GOLD = 2000L; - private static final long TIER2_GOLD = 5000L; - private static final long TIER3_GOLD = 5000L; + private static final long TIER1_GOLD = 17000L; + private static final long TIER2_GOLD = 45000L; + private static final long TIER3_GOLD = 50000L; private final InviteUserGateway inviteUserGateway; private final UserInviteCacheService userInviteCacheService;