您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

18 行
343 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace JT809.Protocol.JT809Enums
  5. {
  6. /// <summary>
  7. /// 报警信息来源
  8. /// </summary>
  9. public enum JT809WarnSrc : byte
  10. {
  11. 车载终端 = 0x00,
  12. 企业监控平台 = 0x01,
  13. 政府监管平台 = 0x02,
  14. 其他 =0x09
  15. }
  16. }