FuelingPointCode.cs 691 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace HengshanPaymentTerminal.Support
  5. {
  6. /// <summary>
  7. /// Represents a fueling point which is the combination of the nozzle and pump.
  8. /// 加油点(0x00=所有加油点)。
  9. /// </summary>
  10. public class FuelingPointCode
  11. {
  12. /// <summary>
  13. /// Nozzle number on the current fueling point.
  14. /// 当前加油点的油枪号。
  15. /// </summary>
  16. public byte NozzleNo { get; set; }
  17. /// <summary>
  18. /// The pump number aka fueling point number.
  19. /// 油点号/泵号。
  20. /// </summary>
  21. public byte PumpNo { get; set; }
  22. }
  23. }