mirror of
https://e.coding.net/circlecloud/McAccount.git
synced 2024-11-17 00:58:57 +00:00
3340847e38
Signed-off-by: 502647092 <jtb1@163.com>
14 lines
293 B
PHP
14 lines
293 B
PHP
<?php
|
|
class user_current extends AmysqlController
|
|
{
|
|
function current()
|
|
{
|
|
$money = $this -> _model('current_model') -> money_current($_REQUEST['user']);
|
|
if(!$money){
|
|
JsonError( "未查询到账号信息!" );
|
|
}
|
|
JsonSuccess( $money );
|
|
}
|
|
}
|
|
|
|
?>
|