From a71942b0d48618a120d2310c3857ecab746dadd6 Mon Sep 17 00:00:00 2001 From: lzh <1625167628@qq.com> Date: Wed, 18 Jun 2025 16:37:01 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=87=E6=BB=A4=E8=BD=AF=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E7=9A=84=E8=AE=B0=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/dao/bundleExtend.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dao/bundleExtend.go b/internal/dao/bundleExtend.go index 4b1473c..3213142 100644 --- a/internal/dao/bundleExtend.go +++ b/internal/dao/bundleExtend.go @@ -100,7 +100,7 @@ func GetBundleBalanceList(req *bundle.GetBundleBalanceListReq) (data []model.Bun `). Joins("LEFT JOIN bundle_order_records bor on bor.customer_id = bb .user_id"). Joins("LEFT JOIN `micro-account`.`user` u on u.id = bb.user_id"). - Where("bor.deleted_at IS NOT NULL") + Where("bor.deleted_at IS NULL") if req.UserName != "" { session = session.Where("u.nickname like ?", "%"+req.UserName+"%") }