Files
zszq-trs/YLErpWeb/Models/LogOnModel.cs
2024-05-09 14:06:26 +08:00

40 lines
808 B
C#

namespace YLErp.Web.Models
{
/// <summary>
///
/// </summary>
public class LogOnModel
{
public string UserName { get; set; }
public string Password { get; set; }
public DateTime LoadTime { get; set; }
public string SID { get; set; }
public string ErrorMessage { get; set; }
public bool NeedCaptcha { get; set; }
public string CaptchaCode { get; set; }
public Exception Exception { get; set; }
}
/// <summary>
/// 单点登录
/// </summary>
public class SsoLogOnModel
{
public string SsoUrl { get; set; }
public string Error { get; set; }
public SsoLogOnModel SetError(string error)
{
Error = error;
return this;
}
}
}