Beispiel #1
0
        public async Task <ResultDto <string> > GetMenuListAsync()
        {
            var roles        = _identityInfo.Identity.Role;
            var roleMenuDtos = await _roleMenuService.GetMenuListAsync(roles);

            var menuDtos = await _menuService.GetAdminMenuListAsync(roleMenuDtos);

            throw new BusinessException("请完善通用递归实现菜单排序并论级!");
        }