where('status', 0)->where('dateline', '<=', date('Y-m-d H:i:s'))->get(); if (!$inviteList->isEmpty()) { foreach ($inviteList as $invite) { Invite::query()->where('id', $invite->id)->update(['status' => 2]); } } Log::info('定时任务:' . $this->description); } }