12345678910111213141516171819202122232425262728293031323334 |
- using Edge.Core.Parser.BinaryParser.Attributes;
- using HengshanPaymentTerminal.Support;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace HengshanPaymentTerminal.MessageEntity.Outgoing
- {
-
-
-
-
- public class LockOrUnlockPumpRequest : CardMessageBase
- {
- #region Constructor
- public LockOrUnlockPumpRequest() : base(Command.LockOrUnlockPump)
- {
- }
- #endregion
- #region Properties
- [Format(2, EncodingType.HexString, -90)]
- public string FPCode { get; set; }
- [Format(1, EncodingType.BIN, -89)]
- public LockUnlockOperation OperationType { get; set; }
- #endregion
- }
- }
|