mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
13 lines
302 B
Go
13 lines
302 B
Go
package entity
|
|
|
|
type SysRoleMenu struct {
|
|
RoleId int64 `gorm:"type:int(11)"`
|
|
MenuId int64 `gorm:"type:int(11)"`
|
|
RoleName string `gorm:"type:varchar(128)"`
|
|
Id int64 `gorm:"primary_key;AUTO_INCREMENT;column:id" json:"id" form:"id"`
|
|
}
|
|
|
|
type MenuPath struct {
|
|
Path string `json:"path"`
|
|
}
|