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
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. }