1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using HengshanPaymentTerminal.Support;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HengshanPaymentTerminal.MessageEntity.Incoming
- {
-
-
-
-
- public class LockOrUnlockPumpAck : CardMessageBase
- {
- #region Constructor
-
-
-
- public LockOrUnlockPumpAck() : base(Command.LockOrUnlockPumpAck)
- {
- }
- #endregion
- #region Properties
-
-
-
-
- [Format(4, EncodingType.BcdString, -90)]
- public string TerminalId { get; set; }
-
-
-
-
- [Format(2, EncodingType.HexString, -89)]
- public string FPCode { get; set; }
-
-
-
-
- [Format(1, EncodingType.BIN, -88)]
- public DispenserState DispenserState { get; set; }
-
-
-
-
- [Format(1, EncodingType.BIN, -87)]
- public LockUnlockOperation OperationType { get; set; }
- #endregion
- }
- }
|