using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HengshanPaymentTerminal
{
///
/// The work mode of pumps.
/// 加油机/后台工作模式。
///
public enum WorkMode
{
///
/// The pump is not enabled.
/// 未启用。
///
Disabled = 0x00,
///
/// Terminal is in self-service mode, pump is automatically authorized from system.
/// 支付终端自助模式,后台自动授权模式。
///
SelfServiceAutoAuth = 0x01,
///
/// Terminal is not is self-service mode, pump is automatically authorized from system.
/// 支付终端非自助模式,后台自动授权模式。
///
ServiceAutoAuth = 0x02,
///
/// Terminal is not in self-service mode, pump is manually authorized from system.
/// 支付终端非自助模式,后台手动授权模式。
///
ServiceManualAuth = 0x03,
///
/// Terminal is not in self-service mode, system pre-authorizes the pump.
/// 支付终端非自助模式,后台主动授权模式。
///
ServicePreAuth = 0x04,
///
/// The pump is in offline mode, transactions are manually recorded.
/// 脱机模式。
///
Offline = 0x05
}
}