feat(game): 接入 AE游戏平台

- 新增 AE 游戏平台的下注记录获取功能
- 实现 AE平台的余额转换状态查询接口
- 添加 AE 平台的玩家登出接口
- 重构原有 XK 平台的相关代码,改为支持 AE 平台
main-KM
shi 2025-04-01 17:46:33 +08:00
parent 8e32200728
commit dbde2ba5d5
1 changed files with 2 additions and 2 deletions

View File

@ -340,7 +340,7 @@ public class GamesDGServiceImpl implements IGamesService {
exchangeMoney.setStatus(StatusType.SUCCESS.getValue()); exchangeMoney.setStatus(StatusType.SUCCESS.getValue());
gameExchangeMoneyService.insertGameExchangeMoney(exchangeMoney); gameExchangeMoneyService.insertGameExchangeMoney(exchangeMoney);
} else { } else {
log.error("GamesXKServiceImpl [exchangeTransferByAgentId] 金额转移失败,错误代码{},错误信息{}", dgTransactionResponseDTO.getCodeId(), dgTransactionResponseDTO.getMsg()); log.error("GamesDGServiceImpl [exchangeTransferByAgentId] 金额转移失败,错误代码{},错误信息{}", dgTransactionResponseDTO.getCodeId(), dgTransactionResponseDTO.getMsg());
throw new ApiException(ErrorCode.BALANCE_TRANSFER_FAILED.getCode()); throw new ApiException(ErrorCode.BALANCE_TRANSFER_FAILED.getCode());
} }
@ -378,7 +378,7 @@ public class GamesDGServiceImpl implements IGamesService {
return Boolean.TRUE; return Boolean.TRUE;
} else { } else {
log.error("GamesXKServiceImpl [getBetRecordByTime] 获取投注记录失败,错误代码{},错误信息{}", betRecordByTime.getCodeId(), betRecordByTime.getMsg()); log.error("GamesDGServiceImpl [getBetRecordByTime] 获取投注记录失败,错误代码{},错误信息{}", betRecordByTime.getCodeId(), betRecordByTime.getMsg());
throw new BaseException(betRecordByTime.getMsg()); throw new BaseException(betRecordByTime.getMsg());
} }