1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace Ips.Library.Entity
- {
- /// <summary>
- /// 任务状态
- /// </summary>
- public enum TskState
- {
- [Description("未运行")]
- Stop = 0,
- [Description("等待运行")]
- Wait = 1,
- [Description("运行中")]
- Running = 2,
- [Description("停止中")]
- Stopping = 3,
- [Description("已完成")]
- Completed = 30,
- [Description("异常终止")]
- Fatal = 40
- }
- }
|