From 7cdf825418ad65bdbda104ad2012c16bf72499b9 Mon Sep 17 00:00:00 2001 From: chengxl Date: Fri, 28 Nov 2025 11:53:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/api/controller/Production.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/application/api/controller/Production.php b/application/api/controller/Production.php index 38c2a992..87e34f47 100644 --- a/application/api/controller/Production.php +++ b/application/api/controller/Production.php @@ -1939,7 +1939,11 @@ class Production extends Base if ($v['refer_doi'] == '') { $this->production_article_refer_obj->where('p_refer_id', $v['p_refer_id'])->update(['refer_frag' => $v['refer_content']]); } else { - Queue::push('app\api\job\ts@fire1', $v, 'ts'); + + //修改队列兼容对接OPENAI接口 chengxiaoling 20251128 start + // Queue::push('app\api\job\ts@fire1', $v, 'ts'); + Queue::push('app\api\job\ArticleReferDetailQueue@fire', $v, 'ArticleReferDetailQueue'); + //修改队列兼容对接OPENAI接口 chengxiaoling 20251128 end } } return jsonSuccess([]);