CardReadAdapter_UserErrorCode.h 1.4 KB

12345678910111213141516
  1. #ifndef _CARDREADADAPTER_USER_ERRORCODE_H
  2. #define _CARDREADADAPTER_USER_ERRORCODE_H
  3. #pragma once
  4. #define CardReadAdapter_UserErrorCode_Start 0x21b00200
  5. #define CardReadAdapter_UserErrorCode_Read_Wrong_In_Working (CardReadAdapter_UserErrorCode_Start + 1) //在"Working"状态收到了Read指令(不正常)
  6. #define CardReadAdapter_UserErrorCode_Read_Wrong_In_Failed (CardReadAdapter_UserErrorCode_Start + 2) //在"Failed"状态收到了Read指令(不正常)
  7. #define CardReadAdapter_UserErrorCode_QueryCardInfo_Wrong_In_Working (CardReadAdapter_UserErrorCode_Start + 3) //在"Working"状态收到了QueryCardInfo指令(不正常)
  8. #define CardReadAdapter_UserErrorCode_QueryCardInfo_Wrong_In_Failed (CardReadAdapter_UserErrorCode_Start + 4) //在"Failed"状态收到了QueryCardInfo指令(不正常)
  9. #define CardReadAdapter_UserErrorCode_MayBe_ThreadPool_Wrong (CardReadAdapter_UserErrorCode_Start + 5) //可能线程池抛出时序异常
  10. #define CardReadAdapter_UserErrorCode_PreOnline_Invoke (CardReadAdapter_UserErrorCode_Start + 6) //web端发起一笔跨机业务
  11. #define CardReadAdapter_UserErrorCode_PreOnline_Result (CardReadAdapter_UserErrorCode_Start + 7) //跨机返回结果
  12. #define CardReadAdapter_UserErrorCode_PreOnline_CardIssuer_Not_Ok (CardReadAdapter_UserErrorCode_Start + 8) //CardIssuer实体异常
  13. #endif //_CARDREADADAPTER_USER_ERRORCODE_H