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.

26 lignes
769 B

  1. using JT808.Protocol.Attributes;
  2. using JT808.Protocol.Extensions.JT1078.Formatters;
  3. using JT808.Protocol.MessageBody;
  4. using System.Collections.Generic;
  5. namespace JT808.Protocol.Extensions.JT1078.MessageBody
  6. {
  7. /// <summary>
  8. /// 视频相关报警屏蔽字
  9. /// 0x8103_0x007A
  10. /// </summary>
  11. [JT808Formatter(typeof(JT808_0x8103_0x007A_Formatter))]
  12. public class JT808_0x8103_0x007A : JT808_0x8103_BodyBase
  13. {
  14. public override uint ParamId { get; set; } = 0x007A;
  15. /// <summary>
  16. /// 数据 长度
  17. /// </summary>
  18. public override byte ParamLength { get; set; } = 4;
  19. /// <summary>
  20. /// 视频相关屏蔽报警字
  21. /// </summary>
  22. public uint AlarmShielding { get; set; }
  23. }
  24. }