2025-04-01 13:41:50 +08:00

14 lines
290 B
C#

using System.Collections.Generic;
using RIZO.Server.Models;
namespace RIZO.Server.IService
{
public interface IUserService : IServiceBase
{
List<RoleInfo> GetRolesByUserId(int userId);
void ResetPassword(int userId);
void SaveUser(string data);
}
}