2019-12-15 15:17:32 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
|
|
use Illuminate\Console\Command;
|
2019-12-15 15:24:56 +08:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2019-12-15 15:17:32 +08:00
|
|
|
|
2019-12-15 15:20:05 +08:00
|
|
|
class ResetTraffic extends Command
|
2019-12-15 15:17:32 +08:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* 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()
|
|
|
|
{
|
2019-12-15 15:27:07 +08:00
|
|
|
DB::table('v2_user')->update([
|
|
|
|
'u' => 0,
|
|
|
|
'd' => 0
|
|
|
|
]);
|
2019-12-15 15:17:32 +08:00
|
|
|
}
|
|
|
|
}
|