This commit is contained in:
wells
2026-08-05 15:19:03 +08:00
parent e6637012d6
commit 50005dd439
@@ -104,8 +104,8 @@ public class GameController {
/**
* 开奖历史
*/
@GetMapping("/history")
public R<Page<com.tailbet.model.entity.DrawRecord>> history(HistoryQueryDTO query) {
@PostMapping("/history")
public R<Page<com.tailbet.model.entity.DrawRecord>> history(@RequestBody HistoryQueryDTO query) {
var page = gameService.getHistory(query.getGroupId(), query.getPageNum(), query.getPageSize());
return R.ok(page);
}