src/Entity/AuditCybersourceTransLog.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AuditCybersourceTransLogRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=AuditCybersourceTransLogRepository::class)
  7. */
  8. class AuditCybersourceTransLog
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\GeneratedValue
  13. * @ORM\Column(type="integer")
  14. */
  15. private $id;
  16. public function getId(): ?int
  17. {
  18. return $this->id;
  19. }
  20. /**
  21. * @ORM\Column(type="string", length=255, nullable=true)
  22. */
  23. private $order_number;
  24. /**
  25. * @ORM\Column(type="string", length=4, nullable=true)
  26. */
  27. private $ccno_ref;
  28. /**
  29. * @ORM\Column(type="float", nullable=true)
  30. */
  31. private $monto_pago;
  32. /**
  33. * @ORM\Column(type="date", nullable=true)
  34. */
  35. private $fecha_reg;
  36. /**
  37. * @ORM\Column(type="time", nullable=true)
  38. */
  39. private $hora_reg;
  40. /**
  41. * @ORM\Column(type="string", length=25, nullable=true)
  42. */
  43. private $estado;
  44. /**
  45. * @ORM\Column(type="datetime", nullable=true)
  46. */
  47. private $fecha_estado;
  48. /**
  49. * @ORM\Column(type="string", length=15, nullable=true)
  50. */
  51. private $reasonCode;
  52. /**
  53. * @ORM\Column(type="string", length=255, nullable=true)
  54. */
  55. private $requestID;
  56. /**
  57. * @ORM\Column(type="string", length=255, nullable=true)
  58. */
  59. private $requestToken;
  60. /**
  61. * @ORM\Column(type="string", length=255, nullable=true)
  62. */
  63. private $authorizationCode;
  64. /**
  65. * @ORM\Column(type="string", length=255, nullable=true)
  66. */
  67. private $reconciliationID;
  68. /**
  69. * @ORM\Column(type="string", length=255, nullable=true)
  70. */
  71. private $paymentNetworkTransactionID;
  72. /**
  73. * @ORM\Column(type="string", length=255, nullable=true)
  74. */
  75. private $reconciliationReferenceNumber;
  76. /**
  77. * @ORM\Column(type="integer", nullable=true)
  78. */
  79. private $user;
  80. }