TTrdinfo.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Dfs.WayneChina.SpsDbManager.Models
  4. {
  5. public partial class TTrdinfo
  6. {
  7. public long Gid { get; set; }
  8. public int? Sno { get; set; }
  9. public int? ShiftNo { get; set; }
  10. public byte? Posid { get; set; }
  11. public byte? PumpType { get; set; }
  12. public string Operator { get; set; }
  13. public string CardNo { get; set; }
  14. public string OperCardNo { get; set; }
  15. public int? PaymodeId { get; set; }
  16. public string PaymodeNo { get; set; }
  17. public byte TrdType { get; set; }
  18. public string CommId { get; set; }
  19. public int? Prc { get; set; }
  20. public int? Vol { get; set; }
  21. public int? Mon { get; set; }
  22. public int? RealMon { get; set; }
  23. public int? CardBal { get; set; }
  24. public byte? CardType { get; set; }
  25. public int? Ctc { get; set; }
  26. public DateTime Ttctime { get; set; }
  27. public DateTime? TtctimeEnd { get; set; }
  28. public int Ttc { get; set; }
  29. public int? SeqNo { get; set; }
  30. public int? BillNo { get; set; }
  31. public int? NozNo { get; set; }
  32. public byte PumpNo { get; set; }
  33. public long? PayTemId { get; set; }
  34. public long? EndPumpId { get; set; }
  35. public int? DiscountNo { get; set; }
  36. public string Psamasn { get; set; }
  37. public int? Psamtac { get; set; }
  38. public string Psamtid { get; set; }
  39. public int? Psamttc { get; set; }
  40. public int? Tac { get; set; }
  41. public int? Gmac { get; set; }
  42. public int? Tmac { get; set; }
  43. public int? Integral { get; set; }
  44. public byte? UploadFlag { get; set; }
  45. public byte? PointFlag { get; set; }
  46. public string CarId { get; set; }
  47. public string CarLicsNo { get; set; }
  48. public string LineNo { get; set; }
  49. public byte? BillType { get; set; }
  50. public byte? BillFlag { get; set; }
  51. }
  52. }