From 596f1fe00c5a65b4d6592320faa6b4d7f6ad6733 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Sat, 9 Nov 2024 12:25:16 +0800 Subject: [PATCH] 1 --- webapp/services/CircuitRankingService.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/webapp/services/CircuitRankingService.php b/webapp/services/CircuitRankingService.php index f02f12a7..957ccb52 100644 --- a/webapp/services/CircuitRankingService.php +++ b/webapp/services/CircuitRankingService.php @@ -179,6 +179,15 @@ class CircuitRankingService extends BaseService { myself()->_rspErr(1, 'currentStageMeta Is empty'); return; } + $androids = SqlHelper::ormSelect + ($this->_getMysql(''), + 't_circuit_battle_phase', + array( + 'season' => $currentStageMeta['circuit_season'], + 'phase' => $currentStageMeta['circuit_phase'], + 'is_android' => 1, + ) + ); $rows = SqlHelper::ormSelect ($this->_getMysql(''), 't_circuit_battle_phase',