fusenapi/model/gmodel/fs_standard_logo_gen.go
laodaming 01b6046d5a fix
2023-11-15 14:42:14 +08:00

24 lines
807 B
Go

package gmodel
import (
"gorm.io/gorm"
)
// fs_standard_logo 标准logo
type FsStandardLogo struct {
Id int64 `gorm:"primary_key;default:0;auto_increment;" json:"id"` // ID
Name *string `gorm:"default:'';" json:"name"` //
Image *string `gorm:"default:'';" json:"image"` //
Ctime *int64 `gorm:"default:0;" json:"ctime"` // 添加时间
Status *int64 `gorm:"default:1;" json:"status"` // 状态 1正常 0删除
Metadata *[]byte `gorm:"default:'';" json:"metadata"` //
}
type FsStandardLogoModel struct {
db *gorm.DB
name string
}
func NewFsStandardLogoModel(db *gorm.DB) *FsStandardLogoModel {
return &FsStandardLogoModel{db: db, name: "fs_standard_logo"}
}