GrayInfoResult.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDbManager.ResultSet
  5. {
  6. public class GrayInfoResult
  7. {
  8. public byte PumpType { get; set; }
  9. public string CardNo { get; set; }
  10. public byte PaymodeId { get; set; }
  11. public byte TrdType { get; set; }
  12. public string CommId { get; set; }
  13. public uint Prc { get; set; }
  14. public uint Vol { get; set; }
  15. public uint Mon { get; set; }
  16. public uint RealMon { get; set; }
  17. public uint CardBal { get; set; }
  18. public uint Ctc { get; set; }
  19. public string Ttctime { get; set; }
  20. public uint Ttc { get; set; }
  21. public uint SeqNo { get; set; }
  22. public byte NozNo { get; set; }
  23. public byte PumpNo { get; set; }
  24. public ulong PayTemId { get; set; }
  25. public ulong EndPumpId { get; set; }
  26. public uint DiscountNo { get; set; }
  27. public string Psamasn { get; set; }
  28. public uint Psamtac { get; set; }
  29. public string Psamtid { get; set; }
  30. public uint Psamttc { get; set; }
  31. public uint Tac { get; set; }
  32. public uint Gmac { get; set; }
  33. public uint Tmac { get; set; }
  34. }
  35. }