1234567891011121314151617181920212223242526272829 |
- #ifndef _CARDISSUER_USER_ERRORCODE_H
- #define _CARDISSUER_USER_ERRORCODE_H
- #pragma once
- #define CardIssuer_UserErrorCode_Start 0x20300200
- #define CardIssuer_UserErrorCode_No_Encryted_Channel (CardIssuer_UserErrorCode_Start + 1) //未建立安全通道
- //#define CardIssuer_UserErrorCode_Open_RunCfgFile_Failed (CardIssuer_UserErrorCode_Start + 2) //打开运行时配置失败
- #define CardIssuer_UserErrorCode_Hopper_Mixed_Too_Much (CardIssuer_UserErrorCode_Start + 3) //卡箱异常(连续吞卡过多)
- #define CardIssuer_UserErrorCode_NotHas_Hopper1 (CardIssuer_UserErrorCode_Start + 4) //未检测到卡箱1,请确认卡箱1是否有卡箱
- #define CardIssuer_UserErrorCode_NotHas_Hopper2 (CardIssuer_UserErrorCode_Start + 5) //未检测到卡箱2,请确认卡箱2是否有卡箱
- #define CardIssuer_UserErrorCode_NotHas_Hopper3 (CardIssuer_UserErrorCode_Start + 6) //未检测到卡箱3,请确认卡箱3是否有卡箱
- #define CardIssuer_UserErrorCode_NoCardInHopper1 (CardIssuer_UserErrorCode_Start + 7) //卡箱1未检测到卡片 请确认卡箱1内卡片是否为空或重新摆放卡片
- #define CardIssuer_UserErrorCode_NoCardInHopper2 (CardIssuer_UserErrorCode_Start + 8) //卡箱2未检测到卡片 请确认卡箱2内卡片是否为空或重新摆放卡片
- #define CardIssuer_UserErrorCode_NoCardInHopper3 (CardIssuer_UserErrorCode_Start + 9) //卡箱3未检测到卡片 请确认卡箱3内卡片是否为空或重新摆放卡片
- #define CardIssuer_UserErrorCode_NoCardRemains_Hopper1 (CardIssuer_UserErrorCode_Start + 10) //卡箱1剩余卡片计数为0(空)
- #define CardIssuer_UserErrorCode_NoCardRemains_Hopper2 (CardIssuer_UserErrorCode_Start + 11) //卡箱2剩余卡片计数为0(空)
- #define CardIssuer_UserErrorCode_NoCardRemains_Hopper3 (CardIssuer_UserErrorCode_Start + 12) //卡箱3剩余卡片计数为0(空)
- #define CardIssuer_UserErrorCode_CaptureCard_Failed (CardIssuer_UserErrorCode_Start + 13) //吞卡失败
- #define CardIssuer_UserErrorCode_MoveCardToGate_Failed (CardIssuer_UserErrorCode_Start + 14) //吐卡失败
- #define CardIssuer_UserErrorCode_KakuFindEmptySlot_Failed (CardIssuer_UserErrorCode_Start + 15) //卡库找不到空闲卡槽
- #define CardIssuer_UserErrorCode_KakuHaveOldPanKuRecord (CardIssuer_UserErrorCode_Start + 16) //卡库有旧的盘库记录
- #define CardIssuer_UserErrorCode_KakuQuerySlot_Failed (CardIssuer_UserErrorCode_Start + 17) //卡库查询卡槽状态失败
- #define CardIssuer_UserErrorCode_KakuHaveNoPanKuRecord (CardIssuer_UserErrorCode_Start + 18) //卡库没有盘库记录
- #define CardIssuer_UserErrorCode_KakuPanKu_Failed (CardIssuer_UserErrorCode_Start + 19) //卡库盘库失败
- #define CardIssuer_UserErrorCode_Customer_Forget_Fectch_Card (CardIssuer_UserErrorCode_Start + 20) //客户超时未取卡
- #define CardIssuer_UserErrorCode_Load_CMBPrint_Failed (CardIssuer_UserErrorCode_Start + 21) //加载CMBPrint失败
- #endif //_CARDISSUER_USER_ERRORCODE_H
|