using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace HighWayIot.Repository.domain { /// /// /// [SugarTable("sys_error_log")] public class SysErrorLogEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)] public int Id { get; set; } /// /// 备 注:报警内容 /// 默认值: /// [SugarColumn(ColumnName = "text")] public string Text { get; set; } = null; /// /// 备 注:日志时间 /// 默认值: /// [SugarColumn(ColumnName = "log_time")] public DateTime? Log_time { get; set; } /// /// 备 注:操作者 /// 默认值: /// [SugarColumn(ColumnName = "operator")] public string Operator { get; set; } = null; /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "device_no")] public int? Device_no { get; set; } } }