From cc4b50fee5172315b612f67be75bb57dcc1c3c84 Mon Sep 17 00:00:00 2001 From: ASUS <515617283@qq.com> Date: Wed, 10 Dec 2025 16:46:23 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8F=91=E7=9F=AD=E4=BF=A1=E5=93=8D=E5=BA=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/queue/redis/BirthdayGiftSms.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/queue/redis/BirthdayGiftSms.php b/app/queue/redis/BirthdayGiftSms.php index dc82dd9..6706740 100644 --- a/app/queue/redis/BirthdayGiftSms.php +++ b/app/queue/redis/BirthdayGiftSms.php @@ -50,6 +50,7 @@ class BirthdayGiftSms implements Consumer Db::table('mk_birthday_gift_record')->where(['id' => $record['id']])->update([ 'push_status' => 'await_push', 'biz_id' => $res['BizId'], + 'push_resp' => $res['Message'], 'phone' => $user['phone'], 'push_time' => date('Y-m-d H:i:s'), ]); @@ -57,6 +58,7 @@ class BirthdayGiftSms implements Consumer Db::table('mk_birthday_gift_record')->where(['id' => $record['id']])->update([ 'push_status' => 'failed', 'phone' => $user['phone'], + 'push_resp' => $res['Message'], 'push_time' => date('Y-m-d H:i:s'), ]); }