fusenapi/model/gmodel/fsproductmodel3dlightmodel.go

19 lines
603 B
Go
Raw Normal View History

2023-06-12 08:47:48 +00:00
package gmodel
import "gorm.io/gorm"
2023-06-12 06:05:35 +00:00
type FsProductModel3dLight struct {
Id int64 `gorm:"primary_key" json:"id"`
Name *string `gorm:"default:''" json:"name"` // 灯光名称
Info *string `gorm:"default:''" json:"info"` // 灯光数据json格式
Status *int64 `gorm:"default:1" json:"status"` // 状态值1显示0删除
Ctime *int64 `gorm:"default:0" json:"ctime"` // 创建时间
}
2023-06-12 08:47:48 +00:00
type FsProductModel3dLightModel struct {
db *gorm.DB
}
func NewFsProductModel3dLightModel(db *gorm.DB) *FsProductModel3dLightModel {
return &FsProductModel3dLightModel{db}
}