This commit is contained in:
孟帅
2025-10-25 00:35:30 +08:00
parent 5ebc33f28b
commit 7313d22cdb
168 changed files with 2349 additions and 1455 deletions

View File

@@ -12,30 +12,30 @@ import (
// AdminMenu is the golang structure of table hg_admin_menu for DAO operations like Where/Data.
type AdminMenu struct {
g.Meta `orm:"table:hg_admin_menu, do:true"`
Id interface{} // 菜单ID
Pid interface{} // 父菜单ID
Level interface{} // 关系树等级
Tree interface{} // 关系树
Title interface{} // 菜单名称
Name interface{} // 名称编码
Path interface{} // 路由地址
Icon interface{} // 菜单图标
Type interface{} // 菜单类型1目录 2菜单 3按钮
Redirect interface{} // 重定向地址
Permissions interface{} // 菜单包含权限集合
PermissionName interface{} // 权限名称
Component interface{} // 组件路径
AlwaysShow interface{} // 取消自动计算根路由模式
ActiveMenu interface{} // 高亮菜单编码
IsRoot interface{} // 是否跟路由
IsFrame interface{} // 是否内嵌
FrameSrc interface{} // 内联外部地址
KeepAlive interface{} // 缓存该路由
Hidden interface{} // 是否隐藏
Affix interface{} // 是否固定
Sort interface{} // 排序
Remark interface{} // 备注
Status interface{} // 菜单状态
Id any // 菜单ID
Pid any // 父菜单ID
Level any // 关系树等级
Tree any // 关系树
Title any // 菜单名称
Name any // 名称编码
Path any // 路由地址
Icon any // 菜单图标
Type any // 菜单类型1目录 2菜单 3按钮
Redirect any // 重定向地址
Permissions any // 菜单包含权限集合
PermissionName any // 权限名称
Component any // 组件路径
AlwaysShow any // 取消自动计算根路由模式
ActiveMenu any // 高亮菜单编码
IsRoot any // 是否跟路由
IsFrame any // 是否内嵌
FrameSrc any // 内联外部地址
KeepAlive any // 缓存该路由
Hidden any // 是否隐藏
Affix any // 是否固定
Sort any // 排序
Remark any // 备注
Status any // 菜单状态
UpdatedAt *gtime.Time // 更新时间
CreatedAt *gtime.Time // 创建时间
}