mirror of
https://gitee.com/blackfox/geekai.git
synced 2024-12-04 21:27:39 +08:00
12 lines
263 B
Go
12 lines
263 B
Go
package model
|
|
|
|
// Menu 系统菜单
|
|
type Menu struct {
|
|
Id uint `gorm:"primarykey;column:id"`
|
|
Name string // 菜单名称
|
|
Icon string // 菜单图标
|
|
URL string // 菜单跳转地址
|
|
SortNum int // 排序
|
|
Enabled bool // 启用状态
|
|
}
|