using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Enumeration
{
public enum WorkProcessStatus
{
///
/// 等待
///
Waiting = 0,
///
/// 运行中
///
Running = 1,
///
/// 暂停
///
Pause = 2,
///
/// 停止
///
Stop = 3,
///
/// 异常停止
///
ExceptionStop = 4,
///
/// 完成
///
Complete = 5
}
}