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.
|
- using JT808.Protocol.Enums;
- using JT808.Protocol.Extensions;
- using JT808.Protocol.Formatters;
- using JT808.Protocol.Interfaces;
- using JT808.Protocol.MessagePack;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Text.Json;
-
- namespace JT808.Protocol.MessageBody.CarDVR
- {
- /// <summary>
- /// 采集记录仪执行标准版本
- /// 返回:记录仪执行标准的年号及修改单号
- /// </summary>
- public class JT808_CarDVR_Down_0x00 : JT808CarDVRDownBodies
- {
- public override byte CommandId => JT808CarDVRCommandID.采集记录仪执行标准版本.ToByteValue();
-
- public override string Description => "采集记录仪执行标准版本";
-
- public override bool SkipSerialization { get; set; } = true;
- }
- }
|