namespace IStation.Entity { /// /// 调度分析日志 /// [SugarTable("ScheduleAnaLog")] public class ScheduleAnaLog : BaseEntity { public ScheduleAnaLog() { } public ScheduleAnaLog(string info) { this.Info = info; this.CreateTime = DateTime.Now; } /// /// 信息 /// public string Info { get; set; } /// /// 生成时间 /// public DateTime CreateTime { get; set; } } }