using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YBDevice.Entity { /// /// 通知日志 /// [SugarTable("YB_NoticeLogger", TableDescription = "通知日志", IsDisabledUpdateAll = false, IsDisabledDelete = true)] public class YB_NoticeLogger { /// /// 主键 /// [SugarColumn(IsPrimaryKey = true)] public Guid Id { get; set; } /// /// IP地址 /// [SugarColumn(ColumnDescription = "来IP地址源", ColumnDataType = "varchar(100)")] public string Ip { get; set; } /// /// UA信息 /// [SugarColumn(ColumnDescription = "UA信息", ColumnDataType = "varchar(max)")] public string UA { get; set; } /// /// 参数额外信息 /// [SugarColumn(ColumnDescription = "参数额外信息", ColumnDataType = "nvarchar(max)")] public string Info { get; set; } /// /// 用户信息 /// [SugarColumn(ColumnDescription = "用户信息", ColumnDataType = "nvarchar(max)")] public string UserInfo { get; set; } /// /// 来源 /// [SugarColumn(ColumnDescription = "来源", ColumnDataType ="nvarchar(max)")] public string FromInfo { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnDescription = "创建时间")] public DateTime CreateTime { get; set; } } }