McAccount/Controller/user_current.php

14 lines
293 B
PHP
Raw Permalink Normal View History

2015-10-13 06:26:47 +00:00
<?php
class user_current extends AmysqlController
{
function current()
{
$money = $this -> _model('current_model') -> money_current($_REQUEST['user']);
if(!$money){
JsonError( "未查询到账号信息!" );
}
2015-10-13 06:26:47 +00:00
JsonSuccess( $money );
}
}
?>