DeviceType.cs 502 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 DeviceType
  10. {
  11. [Description("接收天线")]
  12. Ant = 10,
  13. [Description("交换矩阵")]
  14. Mtx = 20,
  15. [Description("变频设备")]
  16. Cfq = 30,
  17. [Description("采集设备")]
  18. Adc = 40,
  19. [Description("服务器")]
  20. Server = 100,
  21. }
  22. }