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
- {
-
-
-
-
- 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
- }
- }
|