CommitFlag.cs
811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HHECS.Application.Enums
{
/// <summary>
/// 任务提交标志
/// </summary>
public enum CommitFlag
{
/// <summary>
/// 未提交
/// </summary>
[Description("未提交")]
Uncommited = 0,
/// <summary>
/// 已提交
/// </summary>
[Description("已提交")]
Commited = 1,
/// <summary>
/// 无需提交
/// </summary>
[Description("无需提交")]
UnNeedCommit = 2,
/// <summary>
/// 提交失败
/// </summary>
[Description("提交失败")]
CommitFailure = 3
}
}