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();