using System.ComponentModel;
using JNPF.DependencyInjection;
namespace JNPF.WorkFlow.Entitys.Enum;
///
/// 任务状态枚举.
///
[SuppressSniffer]
public enum FlowTaskStatusEnum
{
///
/// 等待提交.
///
[Description("等待提交")]
Draft = 0,
///
/// 等待审核.
///
[Description("等待提交")]
Handle = 1,
///
/// 审核通过.
///
[Description("等待提交")]
Adopt = 2,
///
/// 审核驳回.
///
[Description("等待提交")]
Reject = 3,
///
/// 审核撤销.
///
[Description("等待提交")]
Revoke = 4,
///
/// 审核作废.
///
[Description("等待提交")]
Cancel = 5,
}