From 9b4972f8e5d89a28dde7c66404ca7c9470a117f9 Mon Sep 17 00:00:00 2001 From: zhx Date: Mon, 6 Jul 2026 14:38:24 +0800 Subject: [PATCH] fix(other): shorten room weekly reward packet id --- .../other/app/command/redpacket/SendRoomRedPacketCmdExe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/redpacket/SendRoomRedPacketCmdExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/redpacket/SendRoomRedPacketCmdExe.java index d3a6d47f..db5e04c1 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/redpacket/SendRoomRedPacketCmdExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/redpacket/SendRoomRedPacketCmdExe.java @@ -253,7 +253,7 @@ public class SendRoomRedPacketCmdExe { } private String buildRoomContributionRewardPacketId(String activityCountId) { - return "RCWR_" + activityCountId; + return "RW" + activityCountId.replace("_", ""); } private boolean isExpired(RoomRedPacket redPacket) {