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