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 lines
728 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.Buffers.Binary;
  8. using System.Collections.Generic;
  9. using System.Text;
  10. using System.Text.Json;
  11. namespace JT808.Protocol.MessageBody.CarDVR
  12. {
  13. /// <summary>
  14. /// 设置车辆信息
  15. /// 返回:车辆信息
  16. /// </summary>
  17. public class JT808_CarDVR_Up_0x82 : JT808CarDVRUpBodies
  18. {
  19. public override byte CommandId => JT808CarDVRCommandID.设置车辆信息.ToByteValue();
  20. public override string Description => "车辆信息";
  21. public override bool SkipSerialization { get; set; } = true;
  22. }
  23. }