mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
17 lines
614 B
Go
17 lines
614 B
Go
package models
|
|
|
|
type SysFileDir struct {
|
|
Model
|
|
Label string `json:"label" gorm:"type:varchar(255);comment:目录名称"` // 目录名称
|
|
PId int `json:"pId" gorm:"type:int(11);comment:上级目录"` // 上级目录
|
|
Sort string `json:"sort" gorm:"type:bigint(20);comment:排序"` // 排序
|
|
Path string `json:"path" gorm:"type:varchar(255);comment:路径"` // 路径
|
|
Children []SysFileDir `json:"children,omitempty" gorm:"-"` // 下级信息
|
|
ControlBy
|
|
ModelTime
|
|
}
|
|
|
|
func (SysFileDir) TableName() string { /**/
|
|
return "sys_file_dir"
|
|
}
|