CommitFlag.cs 695 Bytes
using System.ComponentModel;

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
    }
}