GameRound status 调整

This commit is contained in:
wells
2026-08-08 22:00:39 +08:00
parent 52061b9d59
commit cfb5b4f2a8
11 changed files with 171 additions and 103 deletions
@@ -143,10 +143,10 @@ public class FakeUserServiceImpl implements IFakeUserService {
String fakeIdStr = fakeList.get(RANDOM.nextInt(fakeList.size()));
Long fakeId = Long.parseLong(fakeIdStr);
// 检查是否有进行中的局
// 检查是否有下注中的局
GameRound round = gameRoundMapper.selectOne(new LambdaQueryWrapper<GameRound>()
.eq(GameRound::getGroupId, groupId)
.eq(GameRound::getStatus, 0));
.eq(GameRound::getStatus, com.tailbet.service.IGameService.STATUS_BETTING));
if (round == null) {
return;