| | |
| | | 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; |
| | |
| | | return await _userRoleService.DeleteRole(id); |
| | | } |
| | | |
| | | //[HttpGet] |
| | | //public async Task<UserChannelOutput> GetUserChannel() |
| | | //{ |
| | | // return await _accountService.GetUserChannel(); |
| | | //} |
| | | /// <summary> |
| | | /// 获取用户账号详情 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | [HttpGet] |
| | | public async Task<BackClientUserInfoOutput> GetBackClientUserInfo() |
| | | { |
| | | return await _accountService.GetBackClientUserInfo(); |
| | | } |
| | | } |
| | | } |