Example #1
0
 function act_getAccountListByPlatform()
 {
     $Platform = $this->act_platformListPowerById();
     //var_dump($Platform);
     $accountList = omAccountModel::accountListPlatform($Platform);
     if (!$accountList) {
         self::$errCode = 400;
         self::$errMsg = "没取到平台列表!";
         return $accountList;
     } else {
         self::$errCode = 200;
         self::$errMsg = "获取到平台列表!";
         return $accountList;
     }
 }