系统学习状态反馈.cs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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 = "6ee";
  11. public 系统学习状态反馈()
  12. {
  13. }
  14. /// <summary>
  15. /// 离合零位学习状态
  16. /// </summary>
  17. [Data(BitStart = 0 , BitLength = 2, DataType = "binary", Description = "", Sequence = 1)]
  18. public string 离合零位学习状态 { get; set; }
  19. /// <summary>
  20. /// 离合最大值学习状态
  21. /// </summary>
  22. [Data(BitStart =3, BitLength = 2,DataType = "binary", Description = "", Sequence = 2)]
  23. public string 离合最大值学习状态 { get; set; }
  24. /// <summary>
  25. /// 转向零位学习状态
  26. /// </summary>
  27. [Data(BitStart = 8, BitLength =2 , DataType = "binary", Description = "", Sequence = 3)]
  28. public string 转向零位学习状态 { get; set; }
  29. /// <summary>
  30. /// 转向左极限学习状态
  31. /// </summary>
  32. [Data(BitStart = 10, BitLength = 2, DataType = "binary", Description = "", Sequence = 4)]
  33. public string 转向左极限学习状态 { get; set; }
  34. /// <summary>
  35. /// 转向右极限学习状态
  36. /// </summary>
  37. [Data(BitStart = 12, BitLength = 2, DataType = "binary", Description = "", Sequence = 5)]
  38. public string 转向右极限学习状态 { get; set; }
  39. /// <summary>
  40. /// 油门零位学习状态
  41. /// </summary>
  42. [Data(BitStart = 16, BitLength = 2, DataType = "binary", Description = "", Sequence = 6)]
  43. public string 油门零位学习状态 { get; set; }
  44. /// <summary>
  45. /// 油门最大值学习状态
  46. /// </summary>
  47. [Data(BitStart = 18, BitLength = 2, DataType = "binary", Description = "", Sequence = 7)]
  48. public string 油门最大值学习状态 { get; set; }
  49. /// <summary>
  50. /// 制动零位学习状态
  51. /// </summary>
  52. [Data(BitStart = 20, BitLength = 2, DataType = "binary", Description = "", Sequence = 8)]
  53. public string 制动零位学习状态 { get; set; }
  54. /// <summary>
  55. /// 制动最大值学习状态
  56. /// </summary>
  57. [Data(BitStart = 22, BitLength = 2, DataType = "binary", Description = "", Sequence = 9)]
  58. public string 制动最大值学习状态 { get; set; }
  59. /// <summary>
  60. /// M档学习状态
  61. /// </summary>
  62. [Data(BitStart = 24, BitLength = 2, DataType = "binary", Description = "", Sequence =10)]
  63. public string M档学习状态 { get; set; }
  64. /// <summary>
  65. /// 升档学习状态
  66. /// </summary>
  67. [Data(BitStart = 26, BitLength = 2, DataType = "binary", Description = "", Sequence = 11)]
  68. public string 升档学习状态 { get; set; }
  69. /// <summary>
  70. /// 降档学习状态
  71. /// </summary>
  72. [Data(BitStart = 28, BitLength = 2, DataType = "binary", Description = "", Sequence = 12)]
  73. public string 降档学习状态 { get; set; }
  74. /// <summary>
  75. /// P档学习状态
  76. /// </summary>
  77. [Data(BitStart = 32, BitLength = 2, DataType = "binary", Description = "", Sequence = 13)]
  78. public string P档学习状态 { get; set; }
  79. /// <summary>
  80. /// N档学习状态
  81. /// </summary>
  82. [Data(BitStart = 34, BitLength = 2, DataType = "binary", Description = "", Sequence = 14)]
  83. public string N档学习状态 { get; set; }
  84. /// <summary>
  85. /// R档学习状态
  86. /// </summary>
  87. [Data(BitStart = 36, BitLength = 2, DataType = "binary", Description = "", Sequence = 15)]
  88. public string R档学习状态 { get; set; }
  89. /// <summary>
  90. /// D档学习状态
  91. /// </summary>
  92. [Data(BitStart = 38, BitLength = 2, DataType = "binary", Description = "", Sequence = 16)]
  93. public string D档学习状态 { get; set; }
  94. /// <summary>
  95. /// 档位学习状态
  96. /// </summary>
  97. [Data(BitStart = 40, BitLength = 2, DataType = "binary", Description = "", Sequence = 17)]
  98. public string 档位学习状态 { get; set; }
  99. /// <summary>
  100. /// 离合学习状态
  101. /// </summary>
  102. [Data(BitStart = 48, BitLength = 2, DataType = "binary", Description = "", Sequence = 18)]
  103. public string 离合学习状态 { get; set; }
  104. /// <summary>
  105. /// 转向学习状态
  106. /// </summary>
  107. [Data(BitStart = 52, BitLength = 2, DataType = "binary", Description = "", Sequence = 19)]
  108. public string 转向学习状态 { get; set; }
  109. /// <summary>
  110. /// 油门学习状态
  111. /// </summary>
  112. [Data(BitStart = 56, BitLength = 2, DataType = "binary", Description = "", Sequence = 20)]
  113. public string 油门学习状态 { get; set; }
  114. /// <summary>
  115. /// 制动学习状态
  116. /// </summary>
  117. [Data(BitStart = 60, BitLength = 2, DataType = "binary", Description = "", Sequence = 21)]
  118. public string 制动学习状态 { get; set; }
  119. }
  120. }