コード例 #1
0
ファイル: omAccount.action.php プロジェクト: ohjack/newErp
 function act_getAllAccountList()
 {
     $accountList = omAccountModel::accountListAcc();
     if (!$accountList) {
         self::$errCode = 101;
         self::$errMsg = "没取到账号列表!";
         return;
     }
     return $accountList;
 }