From 6e1afc61b0465dd1721bab510e3878b1cc3faac3 Mon Sep 17 00:00:00 2001 From: shi Date: Wed, 9 Apr 2025 09:18:47 +0800 Subject: [PATCH] =?UTF-8?q?refactor(game):=20=E9=87=8D=E6=9E=84=E6=B8=B8?= =?UTF-8?q?=E6=88=8F=E5=88=97=E8=A1=A8=E5=92=8C=E9=87=91=E9=A2=9D=E8=BD=AC?= =?UTF-8?q?=E7=A7=BB=E7=9B=B8=E5=85=B3=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 更新了 PGX、SA 和 XK游戏平台的游戏列表获取逻辑- 优化了游戏数据插入和更新的处理流程 - 改进了金额转移的处理方式,增加了状态和步骤记录 -调整了投注记录获取的接口调用方式 - 优化了代码结构,移除了不必要的注释和冗余代码 --- .../java/com/ff/game/api/xk/service/impl/GamesXKServiceImpl.java | 1 - 1 file changed, 1 deletion(-) diff --git a/ff-game/src/main/java/com/ff/game/api/xk/service/impl/GamesXKServiceImpl.java b/ff-game/src/main/java/com/ff/game/api/xk/service/impl/GamesXKServiceImpl.java index c916bb1..3a39919 100644 --- a/ff-game/src/main/java/com/ff/game/api/xk/service/impl/GamesXKServiceImpl.java +++ b/ff-game/src/main/java/com/ff/game/api/xk/service/impl/GamesXKServiceImpl.java @@ -229,7 +229,6 @@ public class GamesXKServiceImpl implements IGamesService { for (XKGamesDTO.DataBean gamesDataDTO : xkGamesDTO.getData()) { Integer platformType = XKGameType.findSystemByCode(gamesDataDTO.getGameCategoryId()); Game game = Game.builder() - //.platformId(gamePlatform.getId()) .platformCode(GamePlatforms.XK.getCode()) .platformType(platformType) .gameCode(String.valueOf(gamesDataDTO.getGameId()))