github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_do/sys_menu.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_do
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/frame/g"
     9  	"github.com/gogf/gf/v2/os/gtime"
    10  )
    11  
    12  // SysMenu is the golang structure of table sys_menu for DAO operations like Where/Data.
    13  type SysMenu struct {
    14  	g.Meta       `orm:"table:sys_menu, do:true"`
    15  	Id           interface{} // ID
    16  	Path         interface{} // 路径
    17  	Name         interface{} // 名称
    18  	Redirect     interface{} // 跳转
    19  	Title        interface{} // 标题
    20  	Icon         interface{} // 图标
    21  	Component    interface{} // 组件
    22  	ParentId     interface{} // 所属父级
    23  	Sort         interface{} // 排序
    24  	State        interface{} // 状态:0隐藏,1显示
    25  	Description  interface{} // 描述
    26  	CreatedAt    *gtime.Time //
    27  	UpdatedAt    *gtime.Time //
    28  	IconUrl      interface{} // 图标URL
    29  	RedirectType interface{} // 跳转类型:1当前页面打开、 2新的标签页打开
    30  	Type         interface{} // 类型:1菜单、2按钮
    31  }