Ejemplo n.º 1
0
 function act_getAccountNum($where)
 {
     //调用model层获取数据
     $list = AccountModel::getAccountNum($where);
     if ($list) {
         return $list;
     } else {
         self::$errCode = AccountModel::$errCode;
         self::$errMsg = AccountModel::$errMsg;
         return false;
     }
 }
Ejemplo n.º 2
0
 function act_accountAllListById()
 {
     $res = omAccountModel::accountAllListById();
     self::$errCode = omAccountModel::$errCode;
     self::$errMsg = omAccountModel::$errMsg;
     return $res;
 }