diff --git a/pkg/service/bundle/bundleBalance.go b/pkg/service/bundle/bundleBalance.go index bbac960..589ff92 100644 --- a/pkg/service/bundle/bundleBalance.go +++ b/pkg/service/bundle/bundleBalance.go @@ -6,6 +6,7 @@ import ( "fonchain-fiee/api/bundle" "fonchain-fiee/api/cast" "fonchain-fiee/pkg/service" + "strconv" bundleModel "fonchain-fiee/pkg/model/bundle" "fonchain-fiee/pkg/model/login" @@ -127,6 +128,8 @@ func GetToBeComfirmedWorks(c *gin.Context) { service.Error(c, err) return } + userInfo := login.GetUserInfoFromC(c) + req.ArtistUuid = strconv.Itoa(int(userInfo.ID)) res, err := service.BundleProvider.ToBeComfirmedWorks(context.Background(), &req) if err != nil { service.Error(c, err)