using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FlexJobApi.Core { /// /// 异常日志 /// public class ExceptionLog : CommonEntity, IDbAuditLogIgnore { /// /// 类型 /// [MaxLength(256)] public string Type { get; set; } /// /// 代码 /// [MaxLength(32)] public string Code { get; set; } /// /// 消息 /// public string Message { get; set; } /// /// 堆栈跟踪 /// public string StackTrace { get; set; } } }