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.
39 lines
646 B
C#
39 lines
646 B
C#
namespace AI.Workflow
|
|
{
|
|
/// <summary>
|
|
/// 工作流状态
|
|
/// </summary>
|
|
public enum WorkflowStatus
|
|
{
|
|
/// <summary>
|
|
/// 未开始
|
|
/// </summary>
|
|
NotStarted,
|
|
|
|
/// <summary>
|
|
/// 运行中
|
|
/// </summary>
|
|
Running,
|
|
|
|
/// <summary>
|
|
/// 已完成
|
|
/// </summary>
|
|
Completed,
|
|
|
|
/// <summary>
|
|
/// 执行失败
|
|
/// </summary>
|
|
Failed,
|
|
|
|
/// <summary>
|
|
/// 已暂停
|
|
/// </summary>
|
|
Paused,
|
|
|
|
/// <summary>
|
|
/// 已取消
|
|
/// </summary>
|
|
Cancelled
|
|
}
|
|
}
|