From 518f666ac67d936427b3b258e77482906a947825 Mon Sep 17 00:00:00 2001 From: qhd <1766646056@qq.com> Date: Thu, 2 Jul 2026 11:20:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=8F=90=E9=AB=98=E7=A7=9F=E6=88=B7?= =?UTF-8?q?=E4=BD=99=E9=A2=9D=E4=B8=8D=E8=B6=B3=E7=9A=84=E6=A3=80=E6=9F=A5?= =?UTF-8?q?=E9=98=88=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/task/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/task/worker.go b/service/task/worker.go index 5f68996..c8e131d 100644 --- a/service/task/worker.go +++ b/service/task/worker.go @@ -46,7 +46,7 @@ func (w *asyncWorker) handleOne(ctx context.Context, task *entity.ModelGatewayTa // 1) 查询余额 // ============================================ surplus, _ = gateway.GetTenantSurplus(ctx, model.TenantId) - if surplus <= 100 { + if surplus <= 200 { w.failTask(ctx, task, startTime, "租户余额不足") return }