From db551ab887aa115180fe72e7e3bdfba2e48fb6f4 Mon Sep 17 00:00:00 2001 From: ziming Date: Wed, 2 Jul 2025 11:46:04 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E8=AD=A630?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/biz/warning_budget.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/biz/warning_budget.go b/internal/biz/warning_budget.go index 445b3e3..f2fc2d2 100644 --- a/internal/biz/warning_budget.go +++ b/internal/biz/warning_budget.go @@ -184,7 +184,8 @@ func (this *VoucherBiz) Calculate(ctx context.Context, product *bo.ProductBo, wx func (this *VoucherBiz) WarningSend(ctx context.Context, product *bo.ProductBo, wxResp *do.WxResp) error { - if err := this.DingMixRepo.SendMessage(ctx, "券预算不足", formatAsCard(product, wxResp)); err != nil { + title := fmt.Sprintf("券预算预警通知:%s", product.BatchName) + if err := this.DingMixRepo.SendMessage(ctx, title, formatAsCard(product, wxResp)); err != nil { return err }