From 2e4e9a9e31b05bbd60bef3fe5af0c43302a0f082 Mon Sep 17 00:00:00 2001 From: lingling <1077478963@qq.com> Date: Sun, 16 Mar 2025 12:02:34 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E4=BF=AE=E5=A4=8D=20Task2=20=E4=B8=AD?= =?UTF-8?q?=E5=9C=A8=E7=BA=BF=E6=97=B6=E9=95=BF=E8=AE=B0=E5=BD=95=E9=80=BB?= =?UTF-8?q?=E8=BE=91=EF=BC=8C=E8=B0=83=E6=95=B4=E5=8F=82=E6=95=B0=E4=BB=A5?= =?UTF-8?q?=E6=AD=A3=E7=A1=AE=E4=BF=9D=E5=AD=98=E5=9C=A8=E7=BA=BF=E6=97=B6?= =?UTF-8?q?=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- process/Task2.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process/Task2.php b/process/Task2.php index 8c6728d..3ed986c 100644 --- a/process/Task2.php +++ b/process/Task2.php @@ -84,7 +84,7 @@ class Task2 $phone->time += $currentTimestamp - $phone->last_time; $phone->last_time = $currentTimestamp; // 保存在线时长记录 - UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 0, $currentTimestamp); + UserPhoneLogDao::setOnlineTimeByPhone($phone->phone, 1, $currentTimestamp); $updateData[] = $phone; } //不在线 @@ -112,7 +112,7 @@ class Task2 UserPhone::whereNotIn('phone', $all_usernames) ->where('status', '!=', 2) ->update(['status' => 2,'last_time'=>$currentTimestamp]); - + UserPhone::where('status', 2)->update(['last_time'=>$currentTimestamp,'time'=>0]); // 批量查询用户信息 $phones2 = UserPhone::whereIn('phone', $usernames2)->get();