using JT809.Protocol.Attributes; using JT809.Protocol.Enums; using JT809.Protocol.Formatters; using System; using System.Collections.Generic; using System.Text; namespace JT809.Protocol { /// /// 交换信息体 /// public abstract class JT809ExchangeMessageBodies: JT809Bodies { /// /// 车牌号 /// public string VehicleNo { get; set; } /// /// 车辆颜色 /// public JT809VehicleColorType VehicleColor { get; set; } = JT809VehicleColorType.其他; /// /// 子业务类型标识 /// public ushort SubBusinessType { get; set; } /// /// 后续数据长度 /// public uint DataLength { get; set; } /// /// 子业务数据体 /// public JT809SubBodies SubBodies { get; set; } } }