OfflineTransactionInfo.cs 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. using System;
  2. using System.Collections.Generic;
  3. // Code scaffolded by EF Core assumes nullable reference types (NRTs) are not used or disabled.
  4. // If you have enabled NRTs for your project, then un-comment the following line:
  5. // #nullable disable
  6. namespace MS.WebApi.Models2
  7. {
  8. public partial class OfflineTransactionInfo
  9. {
  10. public Guid Id { get; set; }
  11. public string AccountId { get; set; }
  12. public int? Amount { get; set; }
  13. public int? Balance { get; set; }
  14. public string CarLicenseNo { get; set; }
  15. public int? CardBalance { get; set; }
  16. public string CardNo { get; set; }
  17. public int? CardType { get; set; }
  18. public string Comments { get; set; }
  19. public int? DiscountNo { get; set; }
  20. public string EmployeeNo { get; set; }
  21. public int? GrossAmount { get; set; }
  22. public short? InvoiceIssued { get; set; }
  23. public string LineNo { get; set; }
  24. public int? Mileage { get; set; }
  25. public int? NozzleNo { get; set; }
  26. public string Operator { get; set; }
  27. public int? PayModeId { get; set; }
  28. public string PayModeNo { get; set; }
  29. public int? PaymentId { get; set; }
  30. public int? PosId { get; set; }
  31. public int? Price { get; set; }
  32. public string ProductId { get; set; }
  33. public int? PumpNo { get; set; }
  34. public int? PumpType { get; set; }
  35. public short? RechargeType { get; set; }
  36. public int? SequenceNo { get; set; }
  37. public DateTime? TransactionTime { get; set; }
  38. public int? TransactionType { get; set; }
  39. public DateTime? TrxEndTime { get; set; }
  40. public string TrxOriginalId { get; set; }
  41. public string TrxSequenceNo { get; set; }
  42. public DateTime? TrxStartTime { get; set; }
  43. public int? Volume { get; set; }
  44. public Guid? AccountInfoId { get; set; }
  45. public Guid? BusinessUnitInfoId { get; set; }
  46. public Guid? CardInfoId { get; set; }
  47. public long? ShiftId { get; set; }
  48. public int? SubTransactionType { get; set; }
  49. public long? EndTotalizer { get; set; }
  50. public long? ReceiptNo { get; set; }
  51. public int? CardSequenceNo { get; set; }
  52. public short? InvoiceType { get; set; }
  53. public string CommId { get; set; }
  54. public string BarCode { get; set; }
  55. public string FuelName { get; set; }
  56. public long? Gid { get; set; }
  57. public int? Sno { get; set; }
  58. public string CarId { get; set; }
  59. public int? Ctc { get; set; }
  60. public long? PayTemId { get; set; }
  61. public int? BillNo { get; set; }
  62. public string PsamAsn { get; set; }
  63. public string PsamTid { get; set; }
  64. public long? Tac { get; set; }
  65. public int? Integral { get; set; }
  66. public int? Ttc { get; set; }
  67. public short? BillType { get; set; }
  68. public int? DisMoney { get; set; }
  69. public int? DisIntegral { get; set; }
  70. public long? PsamTac { get; set; }
  71. public long? PsamTtc { get; set; }
  72. public long? Gmac { get; set; }
  73. public long? Tmac { get; set; }
  74. public bool? SmsSent { get; set; }
  75. public DateTime? LastModified { get; set; }
  76. public string OperCardNo { get; set; }
  77. public virtual AccountInfo AccountInfo { get; set; }
  78. public virtual BusinessUnitInfo BusinessUnitInfo { get; set; }
  79. public virtual CardInfo CardInfo { get; set; }
  80. }
  81. }