| | |
| | | public Map<String, Object> worldCupGameStatistics(@RequestBody WorldCupGameStatistics worldCupGameStatistics){ |
| | | return worldCupService.worldCupGameStatistics(worldCupGameStatistics); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取比赛统计详情列表 |
| | | * @param worldCupGameStatisticsInfoList |
| | | * @return |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/worldCup/worldCupGameStatisticsInfoList") |
| | | public Map<String, Object> worldCupGameStatisticsInfoList(@RequestBody WorldCupGameStatisticsInfoList worldCupGameStatisticsInfoList){ |
| | | return worldCupCompetitorService.worldCupGameStatisticsInfoList(worldCupGameStatisticsInfoList); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 获取单场参赛详情列表 |
| | | * @return |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/worldCup/worldCupGameStatisticsListInfo") |
| | | public Map<String, Object> worldCupGameStatisticsListInfo(@RequestBody WorldCupGameStatisticsListInfo worldCupGameStatisticsListInfo){ |
| | | return worldCupCompetitorService.worldCupGameStatisticsListInfo(worldCupGameStatisticsListInfo); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * 修改比分 |
| | | * @param changeScore |
| | | */ |
| | | @ResponseBody |
| | | @PostMapping("/worldCup/changeScore") |
| | | public void changeScore(@RequestBody ChangeScore changeScore){ |
| | | worldCupCompetitorService.changeScore(changeScore); |
| | | } |
| | | } |