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.

18 lines
351 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 JT809_0x9401_WarnSrc : byte
  10. {
  11. 车载终端 = 0x00,
  12. 企业监控平台 = 0x01,
  13. 政府监管平台 = 0x02,
  14. 其他 =0x09
  15. }
  16. }