namespace YLErp.Web.Models
{
///
///
///
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; }
}
///
/// 单点登录
///
public class SsoLogOnModel
{
public string SsoUrl { get; set; }
public string Error { get; set; }
public SsoLogOnModel SetError(string error)
{
Error = error;
return this;
}
}
}