You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
2.8 KiB
89 lines
2.8 KiB
namespace Tiobon.Core.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 用户角色关系
|
|
/// </summary>
|
|
[Produces("application/json")]
|
|
[Route("api/[controller]/[action]")]
|
|
[ApiController]
|
|
[Authorize(Permissions.Name), ApiExplorerSettings(GroupName = Grouping.GroupName_System)]
|
|
public class UserRoleController : Controller
|
|
{
|
|
private readonly ISysUserInfoServices _sysUserInfoServices;
|
|
private readonly IUserRoleServices _userRoleServices;
|
|
private readonly IRoleServices _roleServices;
|
|
private readonly IMapper _mapper;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="sysUserInfoServices"></param>
|
|
/// <param name="userRoleServices"></param>
|
|
/// <param name="mapper"></param>
|
|
/// <param name="roleServices"></param>
|
|
public UserRoleController(ISysUserInfoServices sysUserInfoServices, IUserRoleServices userRoleServices, IMapper mapper, IRoleServices roleServices)
|
|
{
|
|
_sysUserInfoServices = sysUserInfoServices;
|
|
_userRoleServices = userRoleServices;
|
|
_roleServices = roleServices;
|
|
_mapper = mapper;
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 新建用户
|
|
/// </summary>
|
|
/// <param name="loginName"></param>
|
|
/// <param name="loginPwd"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ServiceResult<SysUserInfoDto>> AddUser(string loginName, string loginPwd)
|
|
{
|
|
var userInfo = await _sysUserInfoServices.SaveUserInfo(loginName, loginPwd);
|
|
return new ServiceResult<SysUserInfoDto>()
|
|
{
|
|
success = true,
|
|
msg = "添加成功",
|
|
response = _mapper.Map<SysUserInfoDto>(userInfo)
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// 新建Role
|
|
/// </summary>
|
|
/// <param name="roleName"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ServiceResult<Role>> AddRole(string roleName)
|
|
{
|
|
return new ServiceResult<Role>()
|
|
{
|
|
success = true,
|
|
msg = "添加成功",
|
|
response = await _roleServices.SaveRole(roleName)
|
|
};
|
|
}
|
|
|
|
/// <summary>
|
|
/// 新建用户角色关系
|
|
/// </summary>
|
|
/// <param name="uid"></param>
|
|
/// <param name="rid"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
public async Task<ServiceResult<UserRole>> AddUserRole(long uid, long rid)
|
|
{
|
|
return new ServiceResult<UserRole>()
|
|
{
|
|
success = true,
|
|
msg = "添加成功",
|
|
response = await _userRoleServices.SaveUserRole(uid, rid)
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|