fusenapi/model/gorm/fsproducttemplatev2model.go
laodaming 9d7022ec11 fix
2023-06-12 14:35:36 +08:00

21 lines
1.3 KiB
Go
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package gorm
type FsProductTemplateV2 struct {
Id int64 `gorm:"primary_key" json:"id"`
ProductId *int64 `gorm:"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:1" json:"status"` // 状态1正常 2异常
Ctime *int64 `gorm:"default:0" json:"ctime"` // 添加时间
Tag *string `gorm:"default:''" json:"tag"` // 标签(用户自填)
IsDel *int64 `gorm:"default:0" json:"is_del"` // 是否删除 1删除
}