From e177b4e515b168c8b8ac9e9156d1e7ba4a191cb2 Mon Sep 17 00:00:00 2001 From: ASUS <515617283@qq.com> Date: Mon, 30 Mar 2026 09:49:16 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9F=AD=E4=BF=A1=E5=8F=91=E9=80=81=E6=9F=A5?= =?UTF-8?q?=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/command/QuerySmsStatus.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/command/QuerySmsStatus.php b/app/command/QuerySmsStatus.php index 5abe1be..f3678e0 100644 --- a/app/command/QuerySmsStatus.php +++ b/app/command/QuerySmsStatus.php @@ -147,7 +147,7 @@ class QuerySmsStatus extends Command // 1. event_id=2 的实际人数 'COUNT(*) AS total_count', // 成功人数 - 'COUNT(CASE WHEN status = 1 THEN 1 END) AS success_count', + 'COUNT(CASE WHEN status = 2 THEN 1 END) AS success_count', // 失败人数 'COUNT(CASE WHEN status = -1 THEN 1 END) AS fail_count' ])