adminData] public static function getAdminMap($adminIds) { $where = []; $where['id'] = ['in', $adminIds]; $data = self::getAllByCondition($where, null, "*"); return array_column($data, null, "id"); } //获取平台的超级管理员 ssh 20231005 public static function getPtSuperAdminId() { $adminId = 919; if (getenv('YII_ENV') == 'production') { $adminId = 4; } return $adminId; } }