| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Text;
- namespace Ips.Library.Entity
- {
- public enum SignalType
- {
- [Description("常规信号")]
- NORMAL = 10,
- //[Description("CDMA信号")]
- //CDMA = 20,
- [Description("DAMA信号")]
- DAMA = 30,
- [Description("TDMA信号")]
- TDMA = 40,
- [Description("WGS信号")]
- WGS = 50,
- [Description("MUOS信号")]
- MUOS = 60
- }
- }
|