Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

40 linhas
1.2 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT808.Protocol.Extensions.SuBiao.Enums
  5. {
  6. /// <summary>
  7. /// 主动安全消息Id
  8. /// Active security message Id
  9. /// </summary>
  10. public enum JT808_SuBiao_MsgId : ushort
  11. {
  12. /// <summary>
  13. /// 报警附件信息消息
  14. /// Alarm attachment information message
  15. /// </summary>
  16. alarm_attachment_information_message = 0x1210,
  17. /// <summary>
  18. /// 文件信息上传
  19. /// Uploading File Information
  20. /// </summary>
  21. uploading_file_information = 0x1211,
  22. /// <summary>
  23. /// 文件上传完成消息
  24. /// Message indicating that file uploading is complete
  25. /// </summary>
  26. message_indicating_that_file_uploading_complete = 0x1212,
  27. /// <summary>
  28. /// 报警附件上传指令
  29. /// Alarm attachment upload instruction
  30. /// </summary>
  31. alarm_attachment_upload_instruction = 0x9208,
  32. /// <summary>
  33. /// 文件上传完成消息应答
  34. /// File upload complete reply message
  35. /// </summary>
  36. file_upload_complete_reply_message = 0x9212,
  37. }
  38. }