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
797 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. public override byte CommandId => JT808CarDVRCommandID.采集记录仪执行标准版本.ToByteValue();
  19. public override string Description => "采集记录仪执行标准版本";
  20. public override bool SkipSerialization { get; set; } = true;
  21. }
  22. }