function act_getAccountListByPower() { $accountList = omAccountModel::accountListPower(); if (!$accountList) { self::$errCode = 400; self::$errMsg = "没取到平台列表!"; return $accountList; } else { self::$errCode = 200; self::$errMsg = "获取到平台列表!"; return $accountList; } }
function act_getAccountListByPower($userid) { $accountList = omAccountModel::accountListPower($userid); return $accountList; }