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

18 行
354 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_0x9002_Result:byte
  10. {
  11. 成功=0x00,
  12. VERIFY_CODE错误= 0x01,
  13. 资源紧张_稍后再连接_已经占用= 0x02,
  14. 其他= 0x03
  15. }
  16. }