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.

27 line
1.1 KiB

  1. using JT809.Protocol.JT809Attributes;
  2. using JT809.Protocol.JT809Formatters.JT809SubMessageBodyFormatters;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace JT809.Protocol.JT809SubMessageBody
  7. {
  8. /// <summary>
  9. /// 申请交换指定车辆定位信息请求消息
  10. /// <para>子业务类型标识:UP_EXG_MSG_APPLY-FOR_MONITOR_STARTUP</para>
  11. /// <para>描述:当下级平台需要在特定时问段内监控特殊车辆时,可上传此命令到上级平台申请对该车辆定位数据交换到下级平台,申请成功后,此车辆定位数据将在指定时间内交换到该平台(即使该车没有进入该平台所属区域也会交换)</para>
  12. /// </summary>
  13. [JT809Formatter(typeof(JT809_0x1200_0x1207Formatter))]
  14. public class JT809_0x1200_0x1207:JT809SubBodies
  15. {
  16. /// <summary>
  17. /// 开始时间,用 UTC 时间表示
  18. /// </summary>
  19. public DateTime StartTime { get; set; }
  20. /// <summary>
  21. /// 结束时间,用 UTC 时间表示
  22. /// </summary>
  23. public DateTime EndTime { get; set; }
  24. }
  25. }