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.

35 regels
1.2 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_REPORT_DRIVER_INFO_ACK</para>
  11. /// <para>描述:下级平台应答上级平台发送的上报驾驶员身份识别信息请求消息,上传指定车辆的驾驶员身份识别信息数据</para>
  12. /// </summary>
  13. [JT809Formatter(typeof(JT809_0x1200_0x120AFormatter))]
  14. public class JT809_0x1200_0x120A:JT809SubBodies
  15. {
  16. /// <summary>
  17. /// 驾驶员姓名
  18. /// </summary>
  19. public string DriverName { get; set; }
  20. /// <summary>
  21. /// 身份证编号
  22. /// </summary>
  23. public string DriverID { get; set; }
  24. /// <summary>
  25. /// 从业资格证(备用)
  26. /// </summary>
  27. public string Licence { get; set; }
  28. /// <summary>
  29. /// 发证机构名称(备用)
  30. /// </summary>
  31. public string OrgName { get; set; }
  32. }
  33. }