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 PolType { [Description("水平极化")] H, [Description("垂直极化")] V, [Description("左旋圆极化")] L, [Description("右旋圆极化")] R, [Description("椭圆极化")] O } }