This commit is contained in:
root 2019-12-15 15:17:32 +08:00
parent d20c8cbd42
commit ad97010fb7
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,46 @@
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use App\Models\User;
class CheckOrder extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'reset:traffic';
/**
* The console command description.
*
* @var string
*/
protected $description = '流量清空';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
User::update([
'u' => 0,
'd' => 0
]);
}
}

View File

@ -32,6 +32,8 @@ class Kernel extends ConsoleKernel
$schedule->command('check:commission')->everyMinute();
// system cache
$schedule->command('system:cache')->everyMinute();
// reset traffic
$schedule->command('reset:traffic')->monthlyOn(1, '00:00');
}
/**