12345678910111213141516171819 |
- 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 AntType
- {
- [Description("常规天线")]
- Normal = 0,
- [Description("战术星天线")]
- WarSat = 1,
- [Description("超短波天线")]
- Wave = 2
- }
- }
|