系统运行状态参数反馈1.cs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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 系统运行状态参数反馈1
  9. {
  10. public const string OperationCode = "6eb";
  11. public 系统运行状态参数反馈1()
  12. {
  13. }
  14. /// <summary>
  15. /// 实际离合电机电流
  16. /// </summary>
  17. [Data(BitStart = 0 , BitLength = 8, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 实际离合电机电流 { get; set; }
  19. /// <summary>
  20. /// 实际换挡臂Y电机电流
  21. /// </summary>
  22. [Data(BitStart = 8 , BitLength = 8 ,DataType = "binary", Description = "", Sequence = 2)]
  23. public string 实际换挡臂Y电机电流 { get; set; }
  24. /// <summary>
  25. /// 实际换挡臂X电机电流
  26. /// </summary>
  27. [Data(BitStart = 16, BitLength =8 , DataType = "binary", Description = "", Sequence = 3)]
  28. public string 实际换挡臂X电机电流 { get; set; }
  29. /// <summary>
  30. /// 实际转向电机电流
  31. /// </summary>
  32. [Data(BitStart = 24, BitLength = 8, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 实际转向电机电流 { get; set; }
  34. /// <summary>
  35. /// 实际制动电机电流
  36. /// </summary>
  37. [Data(BitStart = 32, BitLength =8 , DataType = "binary", Description = "", Sequence = 5)]
  38. public string 实际制动电机电流 { get; set; }
  39. /// <summary>
  40. /// 实际油门踏板电机电流
  41. /// </summary>
  42. [Data(BitStart = 40, BitLength = 8, DataType = "binary", Description = "", Sequence = 6)]
  43. public string 实际油门踏板电机电流 { get; set; }
  44. /// <summary>
  45. /// 系统运行时间
  46. /// </summary>
  47. [Data(BitStart = 53, BitLength =11, DataType = "binary", Description = "", Sequence = 7)]
  48. public string 系统运行时间 { get; set; }
  49. }
  50. }