上位机监控.cs 776 B

1234567891011121314151617181920212223242526272829
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace SIASUN.Autopilot.Device.Message
  7. {
  8. public class 上位机监控
  9. {
  10. public const string OperationCode = "5fa";
  11. public 上位机监控()
  12. {
  13. }
  14. /// <summary>
  15. /// 上位机关闭请求
  16. /// </summary>
  17. [Data(BitStart = 48, BitLength = 1, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 上位机关闭请求 { get; set; }
  19. /// <summary>
  20. /// 上位机心跳
  21. /// </summary>
  22. [Data(BitStart = 56, BitLength = 4, DataType = "binary", Description = "", Sequence = 2)]
  23. public string 上位机心跳 { get; set; }
  24. }
  25. }