mirror of
https://github.com/quarkcloudio/quark-go.git
synced 2025-09-26 20:11:11 +08:00
12 lines
398 B
Go
12 lines
398 B
Go
package model
|
|
|
|
// 字段
|
|
type FileCategory struct {
|
|
Id int `json:"id" gorm:"autoIncrement"`
|
|
ObjType string `json:"obj_type" gorm:"size:100"`
|
|
ObjId int `json:"obj_id" gorm:"size:11;default:0"`
|
|
Title string `json:"title" gorm:"size:255;not null"`
|
|
Sort int `json:"sort" gorm:"size:11;default:0"`
|
|
Description string `json:"description" gorm:"size:255"`
|
|
}
|