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
675 B
C#
39 lines
675 B
C#
10 months ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace DS.Module.Core;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 工作流状态
|
||
|
/// </summary>
|
||
|
public enum FlowStatusEnum
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 撤销、召回
|
||
|
/// </summary>
|
||
|
[Description("撤销、召回")]
|
||
|
Draft = -1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 就绪状态
|
||
|
/// </summary>
|
||
|
[Description("就绪状态")]
|
||
|
Ready = 0,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 正在运行
|
||
|
/// </summary>
|
||
|
[Description("正在运行")]
|
||
|
Running = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 驳回
|
||
|
/// </summary>
|
||
|
[Description("驳回")]
|
||
|
Reject = 2,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 审核通过
|
||
|
/// </summary>
|
||
|
[Description("审核通过")]
|
||
|
Approve = 3,
|
||
|
}
|