12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HengshanPaymentTerminal.Support
- {
-
-
-
-
- public enum PaymentProcessingResult
- {
-
-
-
-
- Ok = 0x00,
-
-
-
-
- NoTrxFound = 0x01,
-
-
-
-
- NoPosTtc = 0x02,
-
-
-
-
- NoSeqNo = 0x03,
-
-
-
-
- OtherErrors = 0x04
- }
- }
|