using System;
using System.Collections.Generic;
using System.Text;
namespace HengshanPaymentTerminal.Support
{
///
/// Result code of payment processing on system.
/// 支付处理命令结果代码。
///
public enum PaymentProcessingResult
{
///
/// Indicates payment process OK.
/// 返回正确支付数据。
///
Ok = 0x00,
///
/// No transaction found for this card.
/// 无此卡交易。
///
NoTrxFound = 0x01,
///
/// No POS TTC for this transaction.
/// 无此流水号。
///
NoPosTtc = 0x02,
///
/// No match for this pump sequence number.
/// 无此油机交易号。
///
NoSeqNo = 0x03,
///
/// Other errors.
/// 其他错误。
///
OtherErrors = 0x04
}
}