From d456099f560c2910b55dfef907284c9f0fe04db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=88=98=E5=8D=8E=E6=B8=85?= <18691022700@163.com> Date: Sat, 6 Dec 2025 09:44:39 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AD=BE=E7=BA=A6=E5=88=B0=E6=9C=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/cron/controller/PerformPerSecond.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/cron/controller/PerformPerSecond.php b/application/cron/controller/PerformPerSecond.php index 39c0e6c..bf49858 100644 --- a/application/cron/controller/PerformPerSecond.php +++ b/application/cron/controller/PerformPerSecond.php @@ -352,7 +352,7 @@ class PerformPerSecond } } //签约到期 - $res = Db::name('vs_user_sign')->where(['end_time' => ['>',time()],'status' => 1])->select(); + $res = Db::name('vs_user_sign')->where(['end_time' => ['<',time()],'status' => 1])->select(); if($res){ foreach ($res as $value){ db::name('vs_user_sign')->where('id',$value['id'])->update(['status' => 2]);