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.

42 line
1.3 KiB

  1. using JT809.Protocol.JT809Attributes;
  2. using JT809.Protocol.JT809Enums;
  3. using JT809.Protocol.JT809Formatters.JT809MessageBodyFormatters;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace JT809.Protocol.JT809MessageBody
  8. {
  9. /// <summary>
  10. /// 主链路车辆动态信息交换业务
  11. /// <para>链路类型:主链路</para>
  12. /// <para>消息方向:下级平台往上级平台</para>
  13. /// <para>业务数据类型标识:UP_EXG_MSG</para>
  14. /// <para>描述:下级平台向上级平台发送车辆动态信息交换业务数据包</para>
  15. /// </summary>
  16. [JT809Formatter(typeof(JT809_0x1200Formatter))]
  17. public class JT809_0x1200:JT809Bodies
  18. {
  19. /// <summary>
  20. /// 车牌号
  21. /// </summary>
  22. public string VehicleNo { get; set; }
  23. /// <summary>
  24. /// 车辆颜色
  25. /// </summary>
  26. public JT809VehicleColorType VehicleColor { get; set; }
  27. /// <summary>
  28. /// 子业务类型标识
  29. /// </summary>
  30. public JT809SubBusinessType SubBusinessType { get; set; }
  31. /// <summary>
  32. /// 后续数据长度
  33. /// </summary>
  34. public uint DataLength { get; set; }
  35. /// <summary>
  36. /// 子业务数据体
  37. /// </summary>
  38. public JT809SubBodies JT809SubBodies { get; set; }
  39. }
  40. }