using FreeSql.DataAnnotations; namespace ZhonTai.Admin.Domain.AppLog; /// /// 应用程序日志 /// [Table(Name = DbConsts.TableNamePrefix + "app_log", OldName = DbConsts.TableOldNamePrefix + "app_log")] public partial class AppLogEntity { /// /// 主键Id /// [Column(Position = 1, IsPrimary = true, IsNullable = false)] public long Id { get; set; } public DateTime Logged { get; set; } [Column(StringLength = 5)] public string Level { get; set; } [Column(StringLength = -1)] public string Message { get; set; } [Column(StringLength = 300)] public string Logger { get; set; } [Column(StringLength = -1)] public string Properties { get; set; } [Column(StringLength = 300)] public string Callsite { get; set; } [Column(StringLength = -1)] public string Exception { get; set; } }