using JTNE.Protocol.Attributes;
using JTNE.Protocol.Formatters.MessageBodyFormatters;
using System;
using System.Collections.Generic;
using System.Text;
namespace JTNE.Protocol.MessageBody
{
///
/// 硬件版本,车载终端厂商自行定义
///
[JTNEFormatter(typeof(JTNE_0x81_0x07Formatter))]
public class JTNE_0x81_0x07: JTNE_0x81_Body
{
public override byte ParamId { get; set; } = 0x07;
///
/// 数据 长度
///
public override byte ParamLength { get; set; } = 5;
///
///硬件版本,车载终端厂商自行定义 数据长度= 5;
///
public string ParamValue { get; set; }
}
}