SigLinkType.cs 442 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Library.Entity
  8. {
  9. /// <summary>
  10. /// 链路类型
  11. /// </summary>
  12. public enum SigLinkType
  13. {
  14. [Description("固定链路")]
  15. Fixed,
  16. [Description("采集链路")]
  17. Collect,
  18. [Description("接收链路")]
  19. Receive
  20. }
  21. }