namespace BPA.MES.Base.Application.Entitys
{
///
/// 名 称 :运行日志
/// 创 建 人 :yangxiao
/// 创建时间 : 2023/8/21 10:18:34
/// 描 述 :
///
[SplitTable(SplitType.Month)]
//[SugarTable("runlog_{year}{month}{day}")]
[SugarTable("runlog")]
public class RunLogEntity : DEntityBase
{
///
/// 日志类别
///
[SugarColumn(IsNullable = true)]
public string LogType { get; set; }
///
/// 日志消息
///
[SugarColumn(IsNullable = true, ColumnDataType = "longtext")]
public string MsgInfo { get; set; }
///
/// 日期
///
[SugarColumn(IsNullable = true)]
public string Date { get; set; }
///
/// 时间
///
[SugarColumn(IsNullable = true)]
public string Time { get; set; }
///
/// 日志消息
///
[SugarColumn(IsNullable = true),SplitField]
public DateTime CreateDate { get; set; }
///
/// 更新时间
///
[SugarColumn(IsNullable = true)]//设置为可空字段
public DateTime UpdateTime { get; set; }
}
}