This commit is contained in:
aozhiwei 2024-11-09 12:25:16 +08:00
parent 916710ca48
commit 596f1fe00c

View File

@ -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',