Files
PandaX/apps/system/entity/role_menu.go
2021-12-23 17:23:27 +08:00

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"`
}