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

35 lines
491 B

2 years ago
namespace Win_in.Sfs.Shared.Domain.Shared;
public enum EnumJobStatus
{
/// <summary>
/// 空枚举
/// </summary>
None = 0,
/// <summary>
/// 待处理
/// </summary>
Open = 1,
/// <summary>
/// 执行中
/// </summary>
Doing = 2,
/// <summary>
/// 完成
/// </summary>
Done = 3,
/// <summary>
/// 关闭
/// </summary>
Closed = 8,
/// <summary>
/// 作废
/// </summary>
Cancelled = 9
}