TskSigAdState.cs 512 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. public enum RunSigAdState
  10. {
  11. [Description("未提交")]
  12. NotSubmit = 0,
  13. [Description("已提交")]
  14. Submitted = 10,
  15. [Description("等待采集")]
  16. WaitAd = 20,
  17. [Description("采集中")]
  18. Ading = 21,
  19. [Description("采集完成")]
  20. Aded = 22,
  21. }
  22. }