19 lines
441 B
C#
19 lines
441 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YY.Admin.Services.Service.User
|
|
{
|
|
public interface ISysUserRoleService
|
|
{
|
|
/// <summary>
|
|
/// 根据用户Id获取角色Id集合
|
|
/// </summary>
|
|
/// <param name="userId"></param>
|
|
/// <returns></returns>
|
|
Task<List<long>> GetUserRoleIdList(long userId);
|
|
}
|
|
}
|