using System.ComponentModel.DataAnnotations; using SqlSugar; using static EasyTemplate.Tool.Entity.PublicEnum; namespace EasyTemplate.Tool.Entity; /// /// 系统日志,记录api请求相关信息 /// [SugarTable(null, "系统日志,记录api请求相关信息")] public class SystemLogApi : EntityBaseLite { /// /// 日志信息 /// [SugarColumn(ColumnDescription = "日志信息", IsNullable = true)] public string Info { get; set; } /// /// IP地址 /// [SugarColumn(ColumnDescription = "IP地址", IsNullable = true)] public string IpAddress { get; set; } /// /// UserAgent /// [SugarColumn(ColumnDescription = "UserAgent", Length = 1000, IsNullable = true)] public string UserAgent { get; set; } }