Files
PandaX/system/entity/role_menu.go
feilong.teng@rheinchina.com cd824b7f0c 集成完成
2021-12-12 19:49:39 +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"`
}