10 lines
368 B
Go
Executable File
10 lines
368 B
Go
Executable File
package gorm
|
|
|
|
type FsStandardLogo struct {
|
|
Id int64 `gorm:"primary_key" json:"id"` // ID
|
|
Name *string `gorm:"default:''" json:"name"` // logo名称
|
|
Image *string `gorm:"default:''" json:"image"` // 图片地址
|
|
Ctime *int64 `gorm:"default:0" json:"ctime"` // 添加时间
|
|
Status *int64 `gorm:"default:1" json:"status"` // 状态 1正常 0删除
|
|
}
|