From 42cbade98c4fd040e6bedc7e2ea9a1e437e8eaca Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Tue, 23 Sep 2025 18:41:23 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=91=E5=B8=81=E4=BB=A3=E7=90=86=E5=85=85?= =?UTF-8?q?=E5=80=BC=E7=BB=99=E7=94=A8=E6=88=B7=EF=BC=8C=E8=AE=A1=E5=85=A5?= =?UTF-8?q?=E8=B4=A2=E5=AF=8C=E6=A6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../wallet/app/command/freight/SendFreightShipCmdExe.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rc-service/rc-service-wallet/wallet-application/src/main/java/com/red/circle/wallet/app/command/freight/SendFreightShipCmdExe.java b/rc-service/rc-service-wallet/wallet-application/src/main/java/com/red/circle/wallet/app/command/freight/SendFreightShipCmdExe.java index 8cb88eaf..318a3213 100644 --- a/rc-service/rc-service-wallet/wallet-application/src/main/java/com/red/circle/wallet/app/command/freight/SendFreightShipCmdExe.java +++ b/rc-service/rc-service-wallet/wallet-application/src/main/java/com/red/circle/wallet/app/command/freight/SendFreightShipCmdExe.java @@ -14,6 +14,7 @@ import com.red.circle.order.inner.endpoint.UserRechargeCountClient; import com.red.circle.order.inner.model.enums.MonthlyRechargeType; import com.red.circle.other.inner.endpoint.activity.AppRankCountClient; import com.red.circle.other.inner.endpoint.activity.CumulativeRechargeClient; +import com.red.circle.other.inner.endpoint.user.user.UserLevelClient; import com.red.circle.other.inner.model.dto.user.UserProfileDTO; import com.red.circle.tool.core.date.LocalDateTimeUtils; import com.red.circle.tool.core.json.JacksonUtils; @@ -67,6 +68,7 @@ public class SendFreightShipCmdExe { private final CumulativeRechargeClient cumulativeRechargeClient; private final FreightBalanceRunningWaterService freightBalanceRunningWaterService; private final TaskMqMessage taskMqMessage; + private final UserLevelClient userLevelClient; public BigDecimal execute(FreightShipSendCmd cmd) { @@ -157,6 +159,9 @@ public class SendFreightShipCmdExe { MonthlyRechargeType.SHIPPING_AGENT ); + //计入财富榜 + userLevelClient.incrWealthExp(cmd.getAcceptUserId(), cmd.getQuantity()); + appRankCountClient.incrRechargeQuantity(cmd.requireReqSysOrigin(), cmd.getAcceptUserId(), cmd.getQuantity().longValue()