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

17 lines
300 B
C#

namespace Common.Const
{
/// <summary>
/// 定时任务状态
/// </summary>
public enum JobStatus
{
/// <summary>
/// 未启动
/// </summary>
NotRun,
/// <summary>
/// 正在运行
/// </summary>
Running
}
}