From 075f351d0096140a248686a1591673461b2abf49 Mon Sep 17 00:00:00 2001 From: huangjiajun <582604932@qq.com> Date: Sat, 14 Dec 2024 09:17:01 +0800 Subject: [PATCH] test --- app/svc/svc_advertising.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/svc/svc_advertising.go b/app/svc/svc_advertising.go index ef8158b..44dfeba 100644 --- a/app/svc/svc_advertising.go +++ b/app/svc/svc_advertising.go @@ -144,6 +144,10 @@ func AdvertisingState(c *gin.Context) { IsSuccess: isSuccess, Integral: integral, } + user := GetUser(c) + virtualAmountDb := implement.NewUserVirtualAmountDb(db.Db) + wallets, _ := virtualAmountDb.GetUserVirtualAllWallets(user.Id) + fmt.Println(utils.SerializeStr(wallets)) e.OutSuc(c, res, nil) return }