This commit is contained in:
laodaming 2023-10-19 15:55:12 +08:00
parent 6c7ef6e92e
commit b81a3682c2
5 changed files with 66 additions and 21 deletions

View File

@ -0,0 +1,18 @@
package gmodel
import (
"gorm.io/gorm"
)
// fs_logo_preprocess
type FsLogoPreprocess struct {
RestaurantName *string `gorm:"index;default:'';" json:"restaurant_name"` // 餐厅名字
}
type FsLogoPreprocessModel struct {
db *gorm.DB
name string
}
func NewFsLogoPreprocessModel(db *gorm.DB) *FsLogoPreprocessModel {
return &FsLogoPreprocessModel{db: db, name: "fs_logo_preprocess"}
}

View File

@ -0,0 +1,2 @@
package gmodel
// TODO: 使用model的属性做你想做的

View File

@ -0,0 +1,23 @@
package gmodel
import (
"gorm.io/gorm"
"time"
)
// fs_product_history_template 模板历史表
type FsProductHistoryTemplate struct {
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
TemplateId *int64 `gorm:"index;default:0;" json:"template_id"` // 模板id
TemplateInfo *string `gorm:"default:'';" json:"template_info"` //
RelativePublicTemplateId *int64 `gorm:"default:0;" json:"relative_public_template_id"` // 变更之前关联的公共模板id仅供查看
Ctime *time.Time `gorm:"default:'0000-00-00 00:00:00';" json:"ctime"` //
}
type FsProductHistoryTemplateModel struct {
db *gorm.DB
name string
}
func NewFsProductHistoryTemplateModel(db *gorm.DB) *FsProductHistoryTemplateModel {
return &FsProductHistoryTemplateModel{db: db, name: "fs_product_history_template"}
}

View File

@ -0,0 +1,2 @@
package gmodel
// TODO: 使用model的属性做你想做的

View File

@ -19,7 +19,7 @@ type FsProductTemplateV2 struct {
LogoHeight *int64 `gorm:"default:0;" json:"logo_height"` // logo图最大高度
IsPublic *int64 `gorm:"default:0;" json:"is_public"` // 是否可公用1:可以0不可以,仅供模型关联)
IsPublicTemplate *int64 `gorm:"default:0;" json:"is_public_template"` // 是否是公共模板0非1是(仅针对模板之间)
RelativePublicTemplateLevelPrefix *string `gorm:"default:'';" json:"relative_public_template_level_prefix"` //
RelativePublicTemplateId *int64 `gorm:"default:0;" json:"relative_public_template_id"` // 模板间关联的公共模板id
Status *int64 `gorm:"default:0;" json:"status"` // 状态1正常 2异常
TemplateTag *string `gorm:"default:'';" json:"template_tag"` //
IsDel *int64 `gorm:"default:0;" json:"is_del"` // 是否删除 1删除