refactor(game): 修改游戏 ID 类型并更新相关接口

-将 ApiGameInfoResponseDTO 中的 systemGameId 字段类型从 Long 改为 String
- 在 GameMapper.xml 中添加 game_id 字段的查询
- 更新 GamesPGServiceImpl 中的代码,使用 game.getGameId() 替代 game.getId()
main-DP
shi 2025-04-11 19:15:47 +08:00
parent 82cd1456a5
commit f097c0f8aa
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public class GameBettingDetailsResponse implements Serializable
/** 游戏id */
private Long gameId;
private String gameId;
/** 游戏类型 ff_game_type 字典 */
private Integer gameType;