diff --git a/internal/dao/bundleDao.go b/internal/dao/bundleDao.go index 5711b56..467c3a2 100644 --- a/internal/dao/bundleDao.go +++ b/internal/dao/bundleDao.go @@ -64,7 +64,9 @@ func BundleList(req *bundle.BundleListRequest) (res *bundle.BundleListResponse, return res, commonErr.ReturnError(err, msg.ErrorGetBundleList, "获取套餐列表失败: ") } - fmt.Printf("bundles %+v\n", bundles) + for _, bundleProfile := range bundles { + fmt.Printf("bundles %+v\n", bundleProfile) + } _ = copier.CopyWithOption(&res.Bundles, bundles, copier.Option{DeepCopy: true})