namespace IStation.Entity
|
{
|
/// <summary>
|
/// 调度分析日志
|
/// </summary>
|
//[SugarTable("ScheduleAnaLog")]
|
public class ScheduleAnaLog
|
{
|
public ScheduleAnaLog() { }
|
|
public ScheduleAnaLog(string info)
|
{
|
this.Info = info;
|
this.CreateTime = DateTime.Now;
|
}
|
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(IsIdentity = true, IsPrimaryKey = true)]
|
public int ID { get; set; }
|
|
/// <summary>
|
/// 信息
|
/// </summary>
|
[SugarColumn(ColumnDataType = "String")]
|
public string Info { get; set; }
|
|
/// <summary>
|
/// 生成时间
|
/// </summary>
|
[SugarColumn(IsNullable = true)]
|
public DateTime CreateTime { get; set; }
|
|
}
|
}
|