Files
Api/DouyinApi.IServices/IUserRoleServices.cs

18 lines
358 B
C#
Raw Permalink Normal View History

2025-11-04 21:09:16 +08:00
using DouyinApi.IServices.BASE;
using DouyinApi.Model.Models;
using System.Threading.Tasks;
namespace DouyinApi.IServices
{
/// <summary>
/// UserRoleServices
/// </summary>
public interface IUserRoleServices :IBaseServices<UserRole>
{
Task<UserRole> SaveUserRole(long uid, long rid);
Task<int> GetRoleIdByUid(long uid);
}
}