From f2eb757c67fb249a345bfc005129abc0780b6747 Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Thu, 4 Jun 2026 15:40:27 +0800 Subject: [PATCH] Update --- internal/dao/bundleDao.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/dao/bundleDao.go b/internal/dao/bundleDao.go index 4c3b337..e237d75 100644 --- a/internal/dao/bundleDao.go +++ b/internal/dao/bundleDao.go @@ -23,6 +23,7 @@ func CreateBundle(req *model.BundleProfile) (res *bundle.CommonResponse, err err return } +// 测试注释 func UpdateBundle(req *model.BundleProfile) (res *bundle.CommonResponse, err error) { res = new(bundle.CommonResponse) err = app.ModuleClients.BundleDB.Model(&model.BundleProfile{}).Where("uuid = ? and language= ?", req.UUID, req.Language).Updates(req).Error