1234567891011121314151617181920212223 |
- 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 RunSigAdState
- {
- [Description("未提交")]
- NotSubmit = 0,
- [Description("已提交")]
- Submitted = 10,
- [Description("等待采集")]
- WaitAd = 20,
- [Description("采集中")]
- Ading = 21,
- [Description("采集完成")]
- Aded = 22,
- }
- }
|