hotgo/hotgo-server/app/service/internal/dto/admin_menu_old.go
2022-02-25 17:11:17 +08:00

35 lines
1.3 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// =================================================================================
// Code generated by GoFrame CLI tool. DO NOT EDIT.
// =================================================================================
package dto
import (
"github.com/gogf/gf/v2/frame/g"
"github.com/gogf/gf/v2/os/gtime"
)
// AdminMenuOld is the golang structure of table hg_admin_menu_old for DAO operations like Where/Data.
type AdminMenuOld struct {
g.Meta `orm:"table:hg_admin_menu_old, dto:true"`
Id interface{} // 菜单ID
Pid interface{} // 父菜单ID
Name interface{} // 菜单名称
Icon interface{} // 菜单图标
Type interface{} // 菜单类型M目录 C菜单 F按钮
Perms interface{} // 权限标识
Path interface{} // 路由地址
Component interface{} // 组件路径
Query interface{} // 路由参数
IsFrame interface{} // 是否为外链0是 1否
IsCache interface{} // 是否缓存0缓存 1不缓存
IsVisible interface{} // 菜单状态0显示 1隐藏
Remark interface{} // 备注
Level interface{} // 级别
Tree interface{} // 树
Sort interface{} // 排序
Status interface{} // 菜单状态
CreatedAt *gtime.Time // 创建时间
UpdatedAt *gtime.Time // 更新时间
}