2023-06-19 01:53:35 +00:00
|
|
|
|
package gmodel
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"gorm.io/gorm"
|
|
|
|
|
)
|
|
|
|
|
|
2023-06-16 11:29:48 +00:00
|
|
|
|
// fs_product_template_v2 产品-模型-模板表
|
2023-06-16 11:04:13 +00:00
|
|
|
|
type FsProductTemplateV2 struct {
|
2023-08-24 03:47:22 +00:00
|
|
|
|
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` //
|
|
|
|
|
ProductId *int64 `gorm:"index;default:0;" json:"product_id"` // 产品ID
|
|
|
|
|
ModelId *int64 `gorm:"default:0;" json:"model_id"` // 模型ID
|
|
|
|
|
Title *string `gorm:"default:'';" json:"title"` // 模板(sku),预留字段
|
|
|
|
|
Name *string `gorm:"default:'';" json:"name"` // 名称
|
|
|
|
|
CoverImg *string `gorm:"default:'';" json:"cover_img"` // 模板背景图
|
|
|
|
|
TemplateInfo *string `gorm:"default:'';" json:"template_info"` // 模板详情
|
|
|
|
|
MaterialImg *string `gorm:"default:'';" json:"material_img"` // 合成好的贴图
|
|
|
|
|
Sort *int64 `gorm:"default:0;" json:"sort"` // 排序
|
|
|
|
|
LogoWidth *int64 `gorm:"default:0;" json:"logo_width"` // logo图最大宽度
|
|
|
|
|
LogoHeight *int64 `gorm:"default:0;" json:"logo_height"` // logo图最大高度
|
|
|
|
|
IsPublic *int64 `gorm:"default:0;" json:"is_public"` // 是否可公用(1:可以,0:不可以)
|
|
|
|
|
Status *int64 `gorm:"default:0;" json:"status"` // 状态1正常 2异常
|
|
|
|
|
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
|
2023-09-01 02:27:28 +00:00
|
|
|
|
TemplateTag *string `gorm:"default:'';" json:"template_tag"` //
|
2023-08-24 03:47:22 +00:00
|
|
|
|
IsDel *int64 `gorm:"default:0;" json:"is_del"` // 是否删除 1删除
|
|
|
|
|
SwitchInfo *string `gorm:"default:'';" json:"switch_info"` // 开关信息
|
|
|
|
|
Version *int64 `gorm:"default:0;" json:"version"` // 默认1
|
|
|
|
|
ElementModelId *int64 `gorm:"default:0;" json:"element_model_id"` // 云渲染对应模型id
|
2023-06-16 11:04:13 +00:00
|
|
|
|
}
|
2023-07-20 02:13:18 +00:00
|
|
|
|
type FsProductTemplateV2Model struct {
|
|
|
|
|
db *gorm.DB
|
|
|
|
|
name string
|
|
|
|
|
}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
|
|
|
|
|
func NewFsProductTemplateV2Model(db *gorm.DB) *FsProductTemplateV2Model {
|
2023-07-20 02:13:18 +00:00
|
|
|
|
return &FsProductTemplateV2Model{db: db, name: "fs_product_template_v2"}
|
2023-06-16 11:04:13 +00:00
|
|
|
|
}
|