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.

54 rivejä
2.1 KiB

  1. using JT809.Protocol.Enums;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT809.Protocol.Metadata
  6. {
  7. public class JT809VehiclePositionProperties_2019
  8. {
  9. /// <summary>
  10. /// 是否使用国测局批准的地图保密插件进行加密 1 已加密 0未加密
  11. /// </summary>
  12. public JT809_VehiclePositionEncrypt Encrypt { get; set; }
  13. /// <summary>
  14. /// 车辆定位信息数据长度
  15. /// </summary>
  16. public uint DataLength { get; set; }
  17. /// <summary>
  18. /// 车辆定位信息内容,包括车辆位置基本信息和位置附加信息
  19. /// 其数据格式安装 808-2019中8.12要求
  20. /// </summary>
  21. public byte[] GnssData { get; set; }
  22. /// <summary>
  23. /// 监控平台唯一编码,由平台所在地行政区域代码和平台编码组成
  24. /// </summary>
  25. public byte[] PlatformId1 { get; set; } = new byte[11];
  26. /// <summary>
  27. /// 报警状态,二进制标识 0 正常 1表示报警
  28. /// 具体定义按照808-2019中表18的规定
  29. /// </summary>
  30. public uint Alarm1 { get; set; }
  31. /// <summary>
  32. /// 市级监控平台唯一编码,由平台所在地行政区域代码和平台编码组成
  33. /// 未填写时,全填0,无市级平台应由省级平台全填1
  34. /// </summary>
  35. public byte[] PlatformId2 { get; set; } = new byte[11];
  36. /// <summary>
  37. /// 报警状态,二进制标识 0 正常 1表示报警
  38. /// 具体定义按照808-2019中表18的规定
  39. /// </summary>
  40. public uint Alarm2 { get; set; }
  41. /// <summary>
  42. /// 省级监控平台唯一编码,由平台所在地行政区域代码和平台编码组成
  43. /// 未填写时,全填0
  44. /// </summary>
  45. public byte[] PlatformId3 { get; set; } = new byte[11];
  46. /// <summary>
  47. /// 报警状态,二进制标识 0 正常 1表示报警
  48. /// 具体定义按照808-2019中表18的规定
  49. /// </summary>
  50. public uint Alarm3 { get; set; }
  51. }
  52. }