fix
This commit is contained in:
parent
6c7ef6e92e
commit
b81a3682c2
18
model/gmodel/fs_logo_preprocess_gen.go
Normal file
18
model/gmodel/fs_logo_preprocess_gen.go
Normal 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"}
|
||||
}
|
2
model/gmodel/fs_logo_preprocess_logic.go
Normal file
2
model/gmodel/fs_logo_preprocess_logic.go
Normal file
|
@ -0,0 +1,2 @@
|
|||
package gmodel
|
||||
// TODO: 使用model的属性做你想做的
|
23
model/gmodel/fs_product_history_template_gen.go
Normal file
23
model/gmodel/fs_product_history_template_gen.go
Normal 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"}
|
||||
}
|
2
model/gmodel/fs_product_history_template_logic.go
Normal file
2
model/gmodel/fs_product_history_template_logic.go
Normal file
|
@ -0,0 +1,2 @@
|
|||
package gmodel
|
||||
// TODO: 使用model的属性做你想做的
|
|
@ -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删除
|
||||
|
|
Loading…
Reference in New Issue
Block a user