namespace YBEE.EQM.Application;
///
/// 用户登录认证服务
///
public interface ISysAuthService
{
///
/// 账户密码登录
///
///
///
Task LoginByAccount(LoginInput input);
///
/// 退出登录
///
///
Task Logout();
///
/// 获取当前登录用户信息
///
///
Task GetLoginUser();
///
/// 获取图形验证码
///
///
Task GetCaptcha();
///
/// 验证图形验证码
///
///
///
Task VerifyCaptcha(GeneralCaptchaInput input);
///
/// 获取临时密码
///
///
///
List GetTempPassword(List input);
}