From 470964580be218c7e53f32307775e71f12c152d1 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Fri, 24 Oct 2025 19:51:00 +0800 Subject: [PATCH] =?UTF-8?q?=E9=87=91=E9=A2=9D=E9=99=90=E5=88=B6=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../other/app/command/activity/LotteryWithdrawApplyExe.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/activity/LotteryWithdrawApplyExe.java b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWithdrawApplyExe.java index 6dddb8ae..205561d6 100644 --- a/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWithdrawApplyExe.java +++ b/rc-service/rc-service-other/other-application/src/main/java/com/red/circle/other/app/command/activity/LotteryWithdrawApplyExe.java @@ -38,7 +38,7 @@ public class LotteryWithdrawApplyExe { BigDecimal amount = cmd.getAmount(); Long activityId = Long.valueOf(cmd.getActivityId()); ResponseAssert.isTrue(LotteryErrorCode.INSUFFICIENT_WITHDRAWAL_REQ_AMOUNT, - amount.compareTo(BigDecimal.valueOf(10)) == 0); + amount.compareTo(BigDecimal.valueOf(10)) >= 0); // 1. 获取用户本周累计金额 String weekKey = getCurrentWeekKey();