Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

24 lignes
594 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT808.Protocol.MessageBody
  5. {
  6. /// <summary>
  7. /// 自定义位置附加信息
  8. /// </summary>
  9. public abstract class JT808_0x0200_CustomBodyBase3
  10. {
  11. /// <summary>
  12. /// 自定义附加信息Id扩展
  13. /// 两个字节
  14. /// </summary>
  15. public abstract ushort AttachInfoId { get; set; }
  16. /// <summary>
  17. /// 自定义附加信息长度
  18. /// 两个字节
  19. /// </summary>
  20. public abstract ushort AttachInfoLength { get; set; }
  21. }
  22. }