mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-21 10:13:01 +00:00
13 lines
206 B
Go
13 lines
206 B
Go
package models
|
|
|
|
type RoleMenu struct {
|
|
RoleId int `gorm:""`
|
|
MenuId int `gorm:""`
|
|
RoleName string `gorm:"size:128)"`
|
|
ControlBy
|
|
}
|
|
|
|
func (RoleMenu) TableName() string {
|
|
return "sys_role_menu"
|
|
}
|