| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | |
| | | */ |
| | | WorldCupInfo getWorldCupInfo(@Param("id") Integer id); |
| | | |
| | | |
| | | /** |
| | | * 获取比赛管理列表数据 |
| | | * @param worldCupListAll |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getWorldCupListAll(@Param("item") WorldCupListAll worldCupListAll); |
| | | |
| | | |
| | | |
| | | Integer getWorldCupListAllCount(@Param("item") WorldCupListAll worldCupListAll); |
| | | |
| | | |
| | | /** |
| | | * 获取比赛统计列表数据 |
| | | * @param worldCupGameStatistics |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> worldCupGameStatistics(@Param("item") WorldCupGameStatistics worldCupGameStatistics); |
| | | |
| | | |
| | | int worldCupGameStatisticsCount(@Param("item") WorldCupGameStatistics worldCupGameStatistics); |
| | | } |