using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HxEnum { /// /// 操作类型 枚举 /// public static class OperationTypeEnum { /// /// 页面操作类型 /// public enum OperationType_Enum { /// /// 添加 /// [Description("添加")] AddEnum = 0, /// /// 修改 /// [Description("修改")] EditEnum = 1, /// /// 删除 /// [Description("删除")] DelEnum = 2, /// /// 查看 /// [Description("查看")] ViewEnum = 3, /// /// 复制 /// [Description("复制")] CopyEnum = 4, /// /// Gantt /// [Description("Gantt")] GanttEnum = 5, /// /// 调试 /// [Description("调试")] Debugging = 6, /// /// 调试 /// [Description("流程")] Flow = 7, /// /// 参数 /// [Description("参数")] Parameter = 8, /// /// 打印 /// [Description("打印")] Print = 9, } #region 节点操作类型(1跳过、2重试、3终止) /// /// 节点操作类型(1跳过、2重试、3终止) /// public enum NodeOperationTypeEnum { /// /// 跳过 /// [Description("跳过")] Continue = 1, /// /// 重试 /// [Description("重试")] Retry = 2, /// /// 终止 /// [Description("终止")] Cancel = 3 } #endregion } }