ReadVolumeTotal.cs 627 B

1234567891011121314151617181920212223242526
  1. using Edge.Core.Parser.BinaryParser.Attributes;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace HengshanPaymentTerminal.MessageEntity.Outgoing
  6. {
  7. /// <summary>
  8. /// Request to terminal to get the pump volume accumulator.
  9. /// 读取加油机累积数。(注:升累积)
  10. /// </summary>
  11. public class ReadVolumeTotal : CardMessageBase
  12. {
  13. #region Constructor
  14. public ReadVolumeTotal() : base(Command.ReadVolumeTotalizer)
  15. {
  16. }
  17. #endregion
  18. [Format(1, EncodingType.BIN, -90)]
  19. public byte NozzleNo { get; set; }
  20. }
  21. }