mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-02-03 02:54:41 +08:00
17 lines
544 B
Go
Executable File
17 lines
544 B
Go
Executable File
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// AdminRoleMenu is the golang structure of table hg_admin_role_menu for DAO operations like Where/Data.
|
|
type AdminRoleMenu struct {
|
|
g.Meta `orm:"table:hg_admin_role_menu, do:true"`
|
|
RoleId interface{} // 角色ID
|
|
MenuId interface{} // 菜单ID
|
|
}
|