no message
This commit is contained in:
parent
3c4308f872
commit
e0af5dbcb6
@ -49,6 +49,13 @@ final class Test extends Base
|
||||
return $this->toJson($oUserRoot);
|
||||
}
|
||||
|
||||
public function doveGet()
|
||||
{
|
||||
$oUserRoot = ModelUser::select("email", "class", "transfer_enable", "u", "autorenew", "money")->where("email", "dove")->first();
|
||||
|
||||
return $this->toJson($oUserRoot);
|
||||
}
|
||||
|
||||
public function orderClear()
|
||||
{
|
||||
DB::table('order')->delete();
|
||||
@ -72,6 +79,15 @@ final class Test extends Base
|
||||
return $oUserRoot->save();
|
||||
}
|
||||
|
||||
public function doveDown()
|
||||
{
|
||||
$oUserRoot = ModelUser::where("email", "dove")->first();
|
||||
$oUserRoot->u = 0;
|
||||
$oUserRoot->class = 1;
|
||||
$oUserRoot->transfer_enable = 0;
|
||||
return $oUserRoot->save();
|
||||
}
|
||||
|
||||
public function rootUp()
|
||||
{
|
||||
$oUserRoot = ModelUser::where("email", "root")->first();
|
||||
@ -81,6 +97,15 @@ final class Test extends Base
|
||||
return $oUserRoot->save();
|
||||
}
|
||||
|
||||
public function doveUp()
|
||||
{
|
||||
$oUserRoot = ModelUser::where("email", "dove")->first();
|
||||
$oUserRoot->u = 222;
|
||||
$oUserRoot->class = 2;
|
||||
$oUserRoot->transfer_enable = 111;
|
||||
return $oUserRoot->save();
|
||||
}
|
||||
|
||||
public function rootExpire()
|
||||
{
|
||||
$oUserRoot = ModelUser::where("email", "root")->first();
|
||||
@ -90,6 +115,15 @@ final class Test extends Base
|
||||
return $oUserRoot->save();
|
||||
}
|
||||
|
||||
public function doveExpire()
|
||||
{
|
||||
$oUserRoot = ModelUser::where("email", "dove")->first();
|
||||
$oUserRoot->u = 222;
|
||||
$oUserRoot->class = 2;
|
||||
$oUserRoot->transfer_enable = 111;
|
||||
return $oUserRoot->save();
|
||||
}
|
||||
|
||||
public function orderCombo()
|
||||
{
|
||||
$job = new Cron();
|
||||
|
||||
Loading…
Reference in New Issue
Block a user