修改BUG:菜单RetrieveMenusByRoleId方法返回对象包含ID字段而不应该是ID字符串

This commit is contained in:
Argo-MacBookPro 2018-11-02 12:44:27 +08:00
parent 8303249371
commit 9294cf1fc6
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ namespace Bootstrap.DataAccess
}
}
}
return menus.Select(m => m.Id);
return menus.Select(m => new { m.Id });
}
/// <summary>
/// 通过角色ID保存当前授权菜单