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