no message
This commit is contained in:
parent
651f83b2a7
commit
2000ca6dcd
@ -49,9 +49,15 @@ final class Test extends Base
|
|||||||
return $this->toJson($oUserRoot);
|
return $this->toJson($oUserRoot);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function doveGet()
|
public function userGet($aParam)
|
||||||
{
|
{
|
||||||
$oUserRoot = ModelUser::select("email", "class", "transfer_enable", "u", "autorenew", "money")->where("email", "dove")->first();
|
$sUser = $aParam["aArg"][1] ?? false;
|
||||||
|
|
||||||
|
if (!$sUser) {
|
||||||
|
return "需要arg1";
|
||||||
|
}
|
||||||
|
|
||||||
|
$oUserRoot = ModelUser::select("email", "class", "transfer_enable", "u", "autorenew", "money")->where("email", $sUser)->first();
|
||||||
|
|
||||||
return $this->toJson($oUserRoot);
|
return $this->toJson($oUserRoot);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user