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.

33 lines
997 B

  1. using JT808.Protocol.Enums;
  2. using JT808.Protocol.Extensions;
  3. using JT808.Protocol.Formatters;
  4. using JT808.Protocol.Interfaces;
  5. using JT808.Protocol.MessagePack;
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Text;
  9. using System.Text.Json;
  10. namespace JT808.Protocol.MessageBody.CarDVR
  11. {
  12. /// <summary>
  13. /// 采集记录仪执行标准版本
  14. /// 返回:记录仪执行标准的年号及修改单号
  15. /// </summary>
  16. public class JT808_CarDVR_Down_0x00 : JT808CarDVRDownBodies
  17. {
  18. /// <summary>
  19. /// 0x00
  20. /// </summary>
  21. public override byte CommandId => JT808CarDVRCommandID.采集记录仪执行标准版本.ToByteValue();
  22. /// <summary>
  23. /// 采集记录仪执行标准版本
  24. /// </summary>
  25. public override string Description => "采集记录仪执行标准版本";
  26. /// <summary>
  27. ///
  28. /// </summary>
  29. public override bool SkipSerialization { get; set; } = true;
  30. }
  31. }