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 SigLinkType { [Description("固定链路")] Fixed, [Description("采集链路")] Collect, [Description("接收链路")] Receive } }