This commit is contained in:
孟帅
2024-04-22 23:08:40 +08:00
parent 82483bd7b9
commit e144b12580
445 changed files with 17457 additions and 6708 deletions

View File

@@ -6,6 +6,6 @@ package entity
// AdminRoleMenu is the golang structure for table admin_role_menu.
type AdminRoleMenu struct {
RoleId int64 `json:"roleId" description:"角色ID"`
MenuId int64 `json:"menuId" description:"菜单ID"`
RoleId int64 `json:"roleId" orm:"role_id" description:"角色ID"`
MenuId int64 `json:"menuId" orm:"menu_id" description:"菜单ID"`
}