ServiceType.cs 603 B

12345678910111213141516171819202122232425
  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 ServiceType
  10. {
  11. [Description("ADC采集")]
  12. AdcService = 10,
  13. [Description("DDC采集")]
  14. DdcService = 11,
  15. [Description("GPU参估")]
  16. CorGpuService = 20,
  17. [Description("CPU参估")]
  18. CorCpuService = 30,
  19. [Description("常规定位")]
  20. LocNormalService = 40,
  21. [Description("DAMA检测")]
  22. DamaCheckService = 50
  23. }
  24. }