You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
593 B

namespace Tiobon.Core.Model.Base;
public abstract class BaseLog : RootEntityTkey<long>
{
[SplitField]
public DateTime? DateTime { get; set; }
[SugarColumn(IsNullable = true)]
public string Level { get; set; }
[SugarColumn(IsNullable = true, ColumnDataType = "longtext,text,clob")]
public string Message { get; set; }
[SugarColumn(IsNullable = true, ColumnDataType = "longtext,text,clob")]
public string MessageTemplate { get; set; }
[SugarColumn(IsNullable = true, ColumnDataType = "longtext,text,clob")]
public string Properties { get; set; }
}