123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Ips.Library.Entity
- {
- public enum RunSigState
- {
- [Description("未提交")]
- NotSubmit = 0,
- [Description("已提交")]
- Submitted = 10,
- [Description("已编排")]
- Arranged = 11,
- [Description("等待采集")]
- WaitAd = 20,
- [Description("采集中")]
- Ading = 21,
- [Description("采集完成")]
- Aded = 22,
- [Description("等待处理")]
- Proc = 30,
- [Description("处理中")]
- Procing = 31,
- [Description("处理完成")]
- Proced = 32,
- [Description("等待定位")]
- Pos = 40,
- [Description("定位中")]
- Posing = 41,
- [Description("定位完成")]
- Posed = 42,
- [Description("已完成")]
- Completed = 999
- }
- }
|