| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- namespace Admin.NET.Core;
- /// <summary>
- /// 系统操作日志表
- /// </summary>
- [SugarTable("sys_log_op", "系统操作日志表")]
- public class SysLogOp : EntityBase
- {
- /// <summary>
- /// 日志名称
- /// </summary>
- [SugarColumn(ColumnDescription = "日志名称", Length = 256)]
- [MaxLength(256)]
- public string LogName { get; set; }
- /// <summary>
- /// 日志级别
- /// </summary>
- [SugarColumn(ColumnDescription = "日志级别", Length = 16)]
- [MaxLength(16)]
- public string LogLevel { get; set; }
- /// <summary>
- /// 事件Id
- /// </summary>
- [SugarColumn(ColumnDescription = "事件Id", ColumnDataType = "longtext,text,clob")]
- public string EventId { get; set; }
- /// <summary>
- /// 日志消息
- /// </summary>
- [SugarColumn(ColumnDescription = "日志消息", ColumnDataType = "longtext,text,clob")]
- public string Message { get; set; }
- /// <summary>
- /// 异常对象
- /// </summary>
- [SugarColumn(ColumnDescription = "异常对象", ColumnDataType = "longtext,text,clob")]
- public string Exception { get; set; }
- }
|