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.

21 lines
532 B
C#

using SqlSugar;
using System;
namespace EntrustSettle.Model.Logs;
public abstract class BaseLog : RootEntityTkey<long>
{
[SplitField]
public DateTime? DateTime { get; set; }
public string Level { get; set; }
[SugarColumn(ColumnDataType = "longtext,text,clob")]
public string Message { get; set; }
[SugarColumn(ColumnDataType = "longtext,text,clob")]
public string MessageTemplate { get; set; }
[SugarColumn(ColumnDataType = "longtext,text,clob")]
public string Properties { get; set; }
}