using System; namespace Znyc.Recruitment.Admin.Security.Dtos { /// /// 输出对象模型 /// [Serializable] public class ExceptionsLogsOutputDto { /// /// 主键Id /// public long Id { get; set; } /// /// 访问域名 /// public string AppDomainName { get; set; } /// /// 错误页面 /// public string ErrorPage { get; set; } /// /// 用户Id /// public string UserName { get; set; } /// /// 用户Ip /// public string IP { get; set; } /// /// 错误类型 /// public string ExceptionType { get; set; } /// /// 异常描述信息 /// public string Message { get; set; } /// /// 堆栈信息 /// public string StackTrace { get; set; } /// /// 异常时间 /// public DateTime ExceptionTime { get; set; } } }