| 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 DeviceType
- {
- [Description("接收天线")]
- Ant = 10,
- [Description("交换矩阵")]
- Mtx = 20,
- [Description("变频设备")]
- Cfq = 30,
- [Description("采集设备")]
- Adc = 40,
- [Description("服务器")]
- Server = 100,
- }
- }
|