This commit is contained in:
wells
2026-08-05 14:00:07 +08:00
parent 1303bf37dc
commit 45e8e3d637
8 changed files with 52 additions and 37 deletions
@@ -90,7 +90,7 @@ public class GameController {
@GetMapping("/bet/trial")
public R<?> trialDigit(Long groupId, Long roundId) {
try {
List<GameService.DigitTrial> trials = gameService.trialDigit(groupId, roundId);
List<IGameService.DigitTrial> trials = gameService.trialDigit(groupId, roundId);
return R.ok(trials);
} catch (RuntimeException e) {
return R.fail(e.getMessage());