1
0

2 İşlemeler 6705a48376 ... 1d317bdc8e

Yazar SHA1 Mesaj Tarih
  kk 1d317bdc8e Merge remote-tracking branch 'origin/master' 2 hafta önce
  kk 136a9dc6ac 开奖记录修改 2 hafta önce

+ 1 - 1
game-business/src/main/java/com/game/business/controller/AppGameBettingController.java

@@ -150,7 +150,7 @@ public class AppGameBettingController extends BaseController{
 
         Integer bettingCount = appGameBettingService.getBettingCount(gameBetting.getUserId(), gameBetting.getGameId(), appGame.getGameDate());
         if(bettingCount != null && bettingCount > 0 ){
-            if(bettingCount.intValue() >= appGame.getBettingCount().intValue()){
+            if(bettingCount.intValue() > appGame.getBettingCount().intValue()){
                 return HttpRet.fail("投注次数已超过限额,无法下单。");
             }
         }