PaymentProcessingResultEnum.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HengshanPaymentTerminal.Support
  5. {
  6. /// <summary>
  7. /// Result code of payment processing on system.
  8. /// 支付处理命令结果代码。
  9. /// </summary>
  10. public enum PaymentProcessingResult
  11. {
  12. /// <summary>
  13. /// Indicates payment process OK.
  14. /// 返回正确支付数据。
  15. /// </summary>
  16. Ok = 0x00,
  17. /// <summary>
  18. /// No transaction found for this card.
  19. /// 无此卡交易。
  20. /// </summary>
  21. NoTrxFound = 0x01,
  22. /// <summary>
  23. /// No POS TTC for this transaction.
  24. /// 无此流水号。
  25. /// </summary>
  26. NoPosTtc = 0x02,
  27. /// <summary>
  28. /// No match for this pump sequence number.
  29. /// 无此油机交易号。
  30. /// </summary>
  31. NoSeqNo = 0x03,
  32. /// <summary>
  33. /// Other errors.
  34. /// 其他错误。
  35. /// </summary>
  36. OtherErrors = 0x04
  37. }
  38. }