From 7df0804b3d21ecb9c4f474d27e14b68abf6da52b Mon Sep 17 00:00:00 2001 From: "jiaji.H" Date: Wed, 3 Jun 2026 17:00:00 +0800 Subject: [PATCH] =?UTF-8?q?Update:=E8=B0=83=E6=95=B4=E5=AD=97=E6=AE=B5?= =?UTF-8?q?=E4=BD=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/model/bundle.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/model/bundle.go b/internal/model/bundle.go index 7fb8cb4..7719150 100644 --- a/internal/model/bundle.go +++ b/internal/model/bundle.go @@ -27,9 +27,9 @@ type BundleProfile struct { FontColor string `json:"fontColor" gorm:"column:font_color;type:varchar(32);comment:字体颜色"` BgImg1 string `json:"bgImg1" gorm:"column:bg_img1;type:varchar(1024);comment:背景图-首页"` BgImg2 string `json:"bgImg2" gorm:"column:bg_img2;type:varchar(1024);comment:背景图-我的"` + BundleType int64 `json:"bundleType" gorm:"column:bundle_type;type:int;comment:套餐类型 1:基础套餐 2:先用后付套餐"` BundleToValueAddService []BundleToValueAddService `gorm:"foreignKey:BundleUuid;references:UUID" json:"bundleToValueAddService"` BundleProfileLang []BundleProfileLang `gorm:"foreignKey:UUID;references:UUID" json:"bundleProfileLang"` - BundleType int64 `json:"bundleType" gorm:"column:bundle_type;type:int;comment:套餐类型 1:基础套餐 2:先用后付套餐"` } type BundleProfileLang struct { Id int32 `gorm:"column:id;type:int(11);primary_key;AUTO_INCREMENT" json:"id"`