|
...
|
...
|
@@ -14,6 +14,7 @@ use App\Models\Devops\ServerConfig; |
|
|
|
use App\Models\Devops\ServersIp;
|
|
|
|
use App\Models\Domain\DomainCreateTask;
|
|
|
|
use App\Models\Domain\DomainInfo;
|
|
|
|
use App\Models\Inquiry\ForwardCount;
|
|
|
|
use App\Models\Inquiry\InquiryInfo;
|
|
|
|
use App\Models\Inquiry\InquiryRelayAi;
|
|
|
|
use App\Models\Product\Category;
|
|
...
|
...
|
@@ -49,7 +50,16 @@ class Temp extends Command |
|
|
|
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$list = ForwardCount::get();
|
|
|
|
|
|
|
|
foreach ($list as $value) {
|
|
|
|
$day = $value->year . '-' . $value->month . '-' . $value->day;
|
|
|
|
$value->created_at = date('Y-m-d 00:30:02', strtotime($day . ' +1 day'));
|
|
|
|
$value->updated_at = date('Y-m-d 00:30:02', strtotime($day . ' +1 day'));
|
|
|
|
$value->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->output('success');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
...
|
...
|
|