Compare commits
2 Commits
4e718554b8
...
87b8d516a8
Author | SHA1 | Date | |
---|---|---|---|
87b8d516a8 | |||
bb35c56cbb |
@ -201,6 +201,7 @@ func BundleListV2(req *bundle.BundleListRequest) (res *bundle.BundleListResponse
|
|||||||
CompanySign: bundleProfile.CompanySign,
|
CompanySign: bundleProfile.CompanySign,
|
||||||
ContractDuration: int64(bundleProfile.ContractDuration),
|
ContractDuration: int64(bundleProfile.ContractDuration),
|
||||||
Sort: bundleProfile.Sort,
|
Sort: bundleProfile.Sort,
|
||||||
|
ImgOption: int32(bundleProfile.ImgOption),
|
||||||
BgImg1: bundleProfile.BgImg1,
|
BgImg1: bundleProfile.BgImg1,
|
||||||
BgImg2: bundleProfile.BgImg2,
|
BgImg2: bundleProfile.BgImg2,
|
||||||
SelectValueAddService: selectValueAddService,
|
SelectValueAddService: selectValueAddService,
|
||||||
|
@ -72,6 +72,7 @@ func SaveBundle(req *bundle.BundleProfile) (res *bundle.SaveResponse, err error)
|
|||||||
Price: req.Price,
|
Price: req.Price,
|
||||||
PriceType: req.PriceType,
|
PriceType: req.PriceType,
|
||||||
Contract: "https://e-cdn.fontree.cn/fonchain-main/prod/file/saas/contract/template-25032801.pdf",
|
Contract: "https://e-cdn.fontree.cn/fonchain-main/prod/file/saas/contract/template-25032801.pdf",
|
||||||
|
ImgOption: int8(req.ImgOption),
|
||||||
BgImg1: req.BgImg1,
|
BgImg1: req.BgImg1,
|
||||||
BgImg2: req.BgImg2,
|
BgImg2: req.BgImg2,
|
||||||
ShelfStatus: 2, //默认初始状态为2-下架
|
ShelfStatus: 2, //默认初始状态为2-下架
|
||||||
@ -238,6 +239,7 @@ func SaveBundle(req *bundle.BundleProfile) (res *bundle.SaveResponse, err error)
|
|||||||
"content": req.Content,
|
"content": req.Content,
|
||||||
"price": req.Price,
|
"price": req.Price,
|
||||||
"price_type": req.PriceType,
|
"price_type": req.PriceType,
|
||||||
|
"img_option": req.ImgOption,
|
||||||
"bg_img1": req.BgImg1,
|
"bg_img1": req.BgImg1,
|
||||||
"bg_img2": req.BgImg2,
|
"bg_img2": req.BgImg2,
|
||||||
}
|
}
|
||||||
@ -327,6 +329,7 @@ func BundleDetailV2(req *bundle.BundleDetailRequest) (res *bundle.BundleDetailRe
|
|||||||
bundleProfile.Content = detail.Content
|
bundleProfile.Content = detail.Content
|
||||||
bundleProfile.Price = detail.Price
|
bundleProfile.Price = detail.Price
|
||||||
bundleProfile.PriceType = detail.PriceType
|
bundleProfile.PriceType = detail.PriceType
|
||||||
|
bundleProfile.ImgOption = int32(detail.ImgOption)
|
||||||
bundleProfile.BgImg1 = detail.BgImg1
|
bundleProfile.BgImg1 = detail.BgImg1
|
||||||
bundleProfile.BgImg2 = detail.BgImg2
|
bundleProfile.BgImg2 = detail.BgImg2
|
||||||
bundleProfile.Sort = detail.Sort
|
bundleProfile.Sort = detail.Sort
|
||||||
|
@ -21,6 +21,7 @@ type BundleProfile struct {
|
|||||||
|
|
||||||
Sort int64 `json:"sort" gorm:"column:sort;type:int;comment:套餐排序"` //数字越小越靠前,同大小后创建优先
|
Sort int64 `json:"sort" gorm:"column:sort;type:int;comment:套餐排序"` //数字越小越靠前,同大小后创建优先
|
||||||
ShelfStatus int64 `json:"shelfStatus" gorm:"column:shelf_status;type:int;default:2;comment:上架状态 1:上架 2:下架"`
|
ShelfStatus int64 `json:"shelfStatus" gorm:"column:shelf_status;type:int;default:2;comment:上架状态 1:上架 2:下架"`
|
||||||
|
ImgOption int8 `json:"imgOption" gorm:"column:img_option;type:int;default:1;comment:图片选择 1:背景图1 2 3"`
|
||||||
BgImg1 string `json:"bgImg1" gorm:"column:bg_img1;type:varchar(1024);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:背景图-我的"`
|
BgImg2 string `json:"bgImg2" gorm:"column:bg_img2;type:varchar(1024);comment:背景图-我的"`
|
||||||
BundleToValueAddService []BundleToValueAddService `gorm:"foreignKey:BundleUuid;references:UUID" json:"bundleToValueAddService"`
|
BundleToValueAddService []BundleToValueAddService `gorm:"foreignKey:BundleUuid;references:UUID" json:"bundleToValueAddService"`
|
||||||
|
@ -69,6 +69,7 @@ message BundleProfile {
|
|||||||
int64 shelfStatus = 16 [json_name = "shelfStatus"]; // 1 上架 2 下架
|
int64 shelfStatus = 16 [json_name = "shelfStatus"]; // 1 上架 2 下架
|
||||||
repeated SelectValueAddService selectValueAddService = 17 [json_name = "SelectValueAddService"];
|
repeated SelectValueAddService selectValueAddService = 17 [json_name = "SelectValueAddService"];
|
||||||
repeated BundleProfileLang bundleProfileLang = 18 [json_name = "bundleProfileLang"];
|
repeated BundleProfileLang bundleProfileLang = 18 [json_name = "bundleProfileLang"];
|
||||||
|
int32 imgOption = 19 [json_name = "imgOption"];
|
||||||
}
|
}
|
||||||
message BundleProfileLang {
|
message BundleProfileLang {
|
||||||
string uuid = 1 [json_name = "uuid"];
|
string uuid = 1 [json_name = "uuid"];
|
||||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user