customize_menu.go
488 字节
package models
type CustomizeMenu struct {
tableName string `pg:"users.customize_menu" comment:"自定义菜单 (base)(菜单维护)"`
// 自定义菜单id
CustomizeMenuId int64 `pg:",pk" comment:"自定义菜单id"`
// 企业id
CompanyId int64 `comment:"企业id"`
// 菜单id
MenuId int64 `comment:"菜单id"`
// 菜单名称
MenuName string `comment:"菜单名称"`
// 菜单别名
MenuAlias string `comment:"菜单别名"`
// 排序
Sort int `comment:"排序"`
}