You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 line
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. }