using Furion.TaskScheduler;
namespace Admin.NET.Core.Service
{
[NotTable]
public class TimerOutput : SysTimer
{
///
/// 执行次数
///
public long Tally { get; set; }
///
/// 任务状态
///
public SpareTimeStatus Status { get; set; } = SpareTimeStatus.Stopped;
///
/// 异常信息
///
public string Exception { get; set; }
}
}