123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- using Dfs.WayneChina.HengshanPayTerminal.MessageEntity.Outgoing;
- using Dfs.WayneChina.HengshanPayTerminal.Support;
- using Edge.Core.Parser.BinaryParser.Attributes;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Dfs.WayneChina.HengshanPayTerminal.MessageEntity.Incoming
- {
- /// <summary>
- /// Result of the lock/unlock operation.
- /// 加油机回复锁定/解锁操作。
- /// </summary>
- public class LockOrUnlockPumpAck : CardMessageBase
- {
- #region Constructor
- /// <summary>
- /// Constructor
- /// </summary>
- public LockOrUnlockPumpAck() : base(Command.LockOrUnlockPumpAck)
- {
- }
- #endregion
- #region Properties
- /// <summary>
- /// Id of the payment terminal.
- /// 终端号。
- /// </summary>
- [Format(4, EncodingType.BcdString, -90)]
- public string TerminalId { get; set; }
- /// <summary>
- /// Fueling point.
- /// 加油点。
- /// </summary>
- [Format(2, EncodingType.HexString, -89)]
- public string FPCode { get; set; }
- /// <summary>
- /// Dispenser state.
- /// 加油机状态。
- /// </summary>
- [Format(1, EncodingType.BIN, -88)]
- public DispenserState DispenserState { get; set; }
- /// <summary>
- /// Lock or unlock pump operation.
- /// 锁定/解锁操作。
- /// </summary>
- [Format(1, EncodingType.BIN, -87)]
- public LockUnlockOperation OperationType { get; set; }
- #endregion
- }
- }
|