Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

26 lignes
815 B

  1. using JTNE.Protocol.Attributes;
  2. using JTNE.Protocol.Formatters.MessageBodyFormatters;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace JTNE.Protocol.MessageBody
  7. {
  8. /// <summary>
  9. /// 车载终端心跳发送周期,有效值范围:1~240(表示1s~240s)
  10. /// </summary>
  11. [JTNEFormatter(typeof(JTNE_0x80Reply_0x09Formatter))]
  12. public class JTNE_0x80Reply_0x09: JTNE_0x80Reply_Body
  13. {
  14. public override byte ParamId { get; set; } = 0x09;
  15. /// <summary>
  16. /// 数据 长度
  17. /// </summary>
  18. public override byte ParamLength { get; set; } = 1;
  19. /// <summary>
  20. /// 车载终端心跳发送周期,有效值范围:1~240(表示1s~240s)
  21. /// </summary>
  22. public byte ParamValue { get; set; }
  23. }
  24. }