You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1008 B
C#
45 lines
1008 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("sys_log")]
|
|
[Serializable]
|
|
public class SysLog : BaseEntity
|
|
{
|
|
[Column("log_source")]
|
|
[DisplayName(" ")]
|
|
public string LogSource { get; set; }
|
|
|
|
[Column("log_date")]
|
|
[DisplayName(" ")]
|
|
public DateTime? LogDate { get; set; }
|
|
|
|
[Column("thread")]
|
|
[DisplayName(" ")]
|
|
public string Thread { get; set; }
|
|
|
|
[Column("log_level")]
|
|
[DisplayName(" ")]
|
|
public string LogLevel { get; set; }
|
|
|
|
[Column("logger")]
|
|
[DisplayName(" ")]
|
|
public string Logger { get; set; }
|
|
|
|
[Column("message")]
|
|
[DisplayName(" ")]
|
|
public string Message { get; set; }
|
|
|
|
[Column("exception")]
|
|
[DisplayName(" ")]
|
|
public string Exception { get; set; }
|
|
|
|
|
|
}
|
|
}
|