using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Azylee.BlackBox.Models { /// /// 异常日志 /// public class ExceptionLogs { /// /// 主键 /// public Guid Id { get; set; } /// /// 关键字 /// public string Keywords { get; set; } /// /// 作者 /// public string Author { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 异常名称 /// public string ExceptionName { get; set; } /// /// 异常消息 /// public string ExceptionMessage { get; set; } /// /// 异常跟踪 /// public string ExceptionStackTrace { get; set; } /// /// 备注 /// public string Remark { get; set; } } }