修改BUG:菜单RetrieveMenusByRoleId方法返回对象包含ID字段而不应该是ID字符串
This commit is contained in:
parent
8303249371
commit
9294cf1fc6
|
@ -84,7 +84,7 @@ namespace Bootstrap.DataAccess
|
|||
}
|
||||
}
|
||||
}
|
||||
return menus.Select(m => m.Id);
|
||||
return menus.Select(m => new { m.Id });
|
||||
}
|
||||
/// <summary>
|
||||
/// 通过角色ID保存当前授权菜单
|
||||
|
|
Loading…
Reference in New Issue