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 ConsoleLog : CommonEntity, IDbAuditLogIgnore { /// /// 通道 /// public EnumConsoleLogAccess Access { get; set; } /// /// 级别 /// public EnumLogLevel Level { get; set; } /// /// 内容 /// [Required] public string Content { get; set; } /// /// 堆栈跟踪 /// public string StackTrace { get; set; } /// /// 链接地址 /// public string Url { get; set; } /// /// 客户IP地址 /// [MaxLength(32)] public string ClientIpAddress { get; set; } } }