From 14c9bd29f6cc35d15a57636f77a191281ee987d2 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Tue, 4 Nov 2025 18:18:53 +0800 Subject: [PATCH] =?UTF-8?q?=E4=B8=AD=E5=A5=96=E8=AE=B0=E5=BD=95=E4=B8=AD?= =?UTF-8?q?=E6=96=87=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../app/command/activity/LotteryWinnerHistoryQryExe.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWinnerHistoryQryExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWinnerHistoryQryExe.java index 26d194d5..07a5bbbc 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWinnerHistoryQryExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWinnerHistoryQryExe.java @@ -121,13 +121,13 @@ public class LotteryWinnerHistoryQryExe { // 根据description判断类型 String description = withdraw.getDescription(); if (description != null && description.contains("兑换金币")) { - historyCO.setPrizeName("兑换金币"); + historyCO.setPrizeName("Exchange for gold coins"); historyCO.setPrizeType("EXCHANGE"); } else if (description != null && description.contains("转账给用户")) { - historyCO.setPrizeName("用户转账"); + historyCO.setPrizeName("User transfer"); historyCO.setPrizeType("TRANSFER"); } else { - historyCO.setPrizeName("提现"); + historyCO.setPrizeName("Withdrawal"); historyCO.setPrizeType("WITHDRAW"); }