33 lines
2.5 KiB
Go
33 lines
2.5 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// SystemMenu is the golang structure for table system_menu.
|
|
type SystemMenu struct {
|
|
Id int64 `json:"id" orm:"id" description:"菜单ID"` // 菜单ID
|
|
Name string `json:"name" orm:"name" description:"菜单名称"` // 菜单名称
|
|
Permission string `json:"permission" orm:"permission" description:"权限标识"` // 权限标识
|
|
Type int `json:"type" orm:"type" description:"菜单类型"` // 菜单类型
|
|
Sort int `json:"sort" orm:"sort" description:"显示顺序"` // 显示顺序
|
|
ParentId int64 `json:"parentId" orm:"parent_id" description:"父菜单ID"` // 父菜单ID
|
|
Path string `json:"path" orm:"path" description:"路由地址"` // 路由地址
|
|
Icon string `json:"icon" orm:"icon" description:"菜单图标"` // 菜单图标
|
|
Component string `json:"component" orm:"component" description:"组件路径"` // 组件路径
|
|
ComponentName string `json:"componentName" orm:"component_name" description:"组件名"` // 组件名
|
|
Status int `json:"status" orm:"status" description:"菜单状态"` // 菜单状态
|
|
Visible bool `json:"visible" orm:"visible" description:"是否可见"` // 是否可见
|
|
KeepAlive bool `json:"keepAlive" orm:"keep_alive" description:"是否缓存"` // 是否缓存
|
|
AlwaysShow bool `json:"alwaysShow" orm:"always_show" description:"是否总是显示"` // 是否总是显示
|
|
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
|
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
|
|
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
|
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
|
|
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
|
}
|