TAuthinfo.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TAuthinfo
  6. {
  7. public long Gid { get; set; }
  8. public byte? Posid { get; set; }
  9. public string CardNo { get; set; }
  10. public long? Vol { get; set; }
  11. public long? Mon { get; set; }
  12. public byte? ConsType { get; set; }
  13. public long? CardBal { get; set; }
  14. public DateTime? Ttctime { get; set; }
  15. public DateTime? TtctimeEnd { get; set; }
  16. public int? Ttc { get; set; }
  17. public int? SeqNo { get; set; }
  18. public long? PayTemId { get; set; }
  19. public int? DiscountNo { get; set; }
  20. public int? PayType { get; set; }
  21. public long? Ctc { get; set; }
  22. public byte? NozzleNo { get; set; }
  23. public byte? PumpNo { get; set; }
  24. public byte? AuthState { get; set; }
  25. public string FuelNo { get; set; }
  26. public byte? CardType { get; set; }
  27. public int? Prc { get; set; }
  28. public long? TotVol { get; set; }
  29. public string Psamasn { get; set; }
  30. public int? Psamtac { get; set; }
  31. public string Psamtid { get; set; }
  32. public int? Psamttc { get; set; }
  33. public int? Tac { get; set; }
  34. public int? Gmac { get; set; }
  35. public int? Tmac { get; set; }
  36. }
  37. }