SignalType.cs 507 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Text;
  5. namespace Ips.Library.Entity
  6. {
  7. public enum SignalType
  8. {
  9. [Description("常规信号")]
  10. NORMAL = 10,
  11. //[Description("CDMA信号")]
  12. //CDMA = 20,
  13. [Description("DAMA信号")]
  14. DAMA = 30,
  15. [Description("TDMA信号")]
  16. TDMA = 40,
  17. [Description("WGS信号")]
  18. WGS = 50,
  19. [Description("MUOS信号")]
  20. MUOS = 60
  21. }
  22. }