This commit is contained in:
hu xiaotong
2025-06-20 17:17:02 +08:00
commit 85e3a6540b
310 changed files with 12475 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
// =================================================================================
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package do
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// SystemMenu is the golang structure of table system_menu for DAO operations like Where/Data.
type SystemMenu struct {
g.Meta `orm:"table:system_menu, do:true"`
Id interface{} // 菜单ID
Name interface{} // 菜单名称
Permission interface{} // 权限标识
Type interface{} // 菜单类型
Sort interface{} // 显示顺序
ParentId interface{} // 父菜单ID
Path interface{} // 路由地址
Icon interface{} // 菜单图标
Component interface{} // 组件路径
ComponentName interface{} // 组件名
Status interface{} // 菜单状态
Visible interface{} // 是否可见
KeepAlive interface{} // 是否缓存
AlwaysShow interface{} // 是否总是显示
Creator interface{} // 创建者
CreateTime *gtime.Time // 创建时间
Updater interface{} // 更新者
UpdateTime *gtime.Time // 更新时间
Deleted interface{} // 是否删除
}