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.
41 lines
1.0 KiB
41 lines
1.0 KiB
namespace Tiobon.Core.Services;
|
|
|
|
/// <summary>
|
|
/// UserRoleServices
|
|
/// </summary>
|
|
public class UserRoleServices : BaseServices<UserRole>, IUserRoleServices
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="uid"></param>
|
|
/// <param name="rid"></param>
|
|
/// <returns></returns>
|
|
public async Task<UserRole> SaveUserRole(long uid, long rid)
|
|
{
|
|
UserRole userRole = new UserRole(uid, rid);
|
|
|
|
UserRole model = new UserRole();
|
|
var userList = await base.Query(a => a.UserId == userRole.UserId && a.RoleId == userRole.RoleId);
|
|
if (userList.Count > 0)
|
|
{
|
|
model = userList.FirstOrDefault();
|
|
}
|
|
else
|
|
{
|
|
var id = await base.Add(userRole);
|
|
model = await base.QueryById(id);
|
|
}
|
|
|
|
return model;
|
|
|
|
}
|
|
|
|
|
|
|
|
[Caching(AbsoluteExpiration = 30)]
|
|
public async Task<int> GetRoleIdByUid(long uid)
|
|
{
|
|
return ((await base.Query(d => d.UserId == uid)).OrderByDescending(d => d.Id).LastOrDefault()?.RoleId).ObjToInt();
|
|
}
|
|
}
|
|
|