You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
443 B
C#
18 lines
443 B
C#
using CncModels.Dto.Login;
|
|
|
|
namespace CncService.Interface
|
|
{
|
|
/// <summary>
|
|
/// 登录认证服务接口
|
|
/// </summary>
|
|
public interface IAuthService
|
|
{
|
|
/// <summary>
|
|
/// 管理员登录
|
|
/// </summary>
|
|
/// <param name="request">登录请求参数</param>
|
|
/// <returns>登录响应(包含 JWT Token 及有效期)</returns>
|
|
LoginResponse Login(LoginRequest request);
|
|
}
|
|
}
|