From 21504e78f25c8153b72e07a5258bb2f9479cbd59 Mon Sep 17 00:00:00 2001
From: lzh <1625167628@qq.com>
Date: Sun, 15 Jun 2025 14:35:39 +0800
Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=85=85=E9=87=91=E9=A2=9D=E5=AD=97?=
 =?UTF-8?q?=E6=AE=B5?=
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 bcfc7f2..d904441 100644
--- a/internal/dao/bundleExtend.go
+++ b/internal/dao/bundleExtend.go
@@ -123,7 +123,7 @@ func GetBundleBalanceList(req *bundle.GetBundleBalanceListReq) (data []model.Bun
 
 func GetBundleBalanceByUserId(req *bundle.GetBundleBalanceByUserIdReq) (data model.UserBundleBalancePo, err error) {
 	err = app.ModuleClients.BundleDB.Table("fiee_bundle.bundle_balance AS bb").
-		Select("bb .*,bor.uuid AS order_uuid, bor.bundle_name AS bundle_name, bor.status AS bundle_status, bor.pay_time AS pay_time, bor.expiration_time AS expired_time").
+		Select("bb .*,bor.uuid AS order_uuid, bor.bundle_name AS bundle_name, bor.status AS bundle_status, bor.pay_time AS pay_time, bor.expiration_time AS expired_time,bor.amount AS payment_amount").
 		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 NULL").