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 { /// /// 采集记录仪唯一性编号 /// 返回:唯一性编号及初次安装日期 /// public class JT808_CarDVR_Down_0x07 : JT808CarDVRDownBodies { /// /// 0x07 /// public byte CommandId => JT808CarDVRCommandID.collect_recorder_unique_number.ToByteValue(); /// /// 唯一性编号及初次安装日期 /// public string Description => "唯一性编号及初次安装日期"; /// /// /// public bool SkipSerialization => true; } }