| | |
| | | using Microsoft.AspNetCore.Authorization; |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.Threading.Tasks; |
| | | using Volo.Abp.AspNetCore.Mvc; |
| | | using Volo.Abp.Identity; |
| | |
| | | await _identityRoleService.DeleteAsync(id); |
| | | return await _userRoleService.DeleteRole(id); |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 获取用户账号详情 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpGet] |
| | | public async Task<BackClientUserInfoOutput> GetBackClientUserInfo() |
| | | { |
| | | return await _accountService.GetBackClientUserInfo(); |
| | | } |
| | | } |
| | | } |