src/Entity/AuditHistorialPagoSubscripcion.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AuditHistorialPagoSubscripcionRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=AuditHistorialPagoSubscripcionRepository::class)
  7. */
  8. class AuditHistorialPagoSubscripcion
  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="integer", nullable=true)
  22. */
  23. private $curso;
  24. /**
  25. * @ORM\Column(type="integer", nullable=true)
  26. */
  27. private $maestro;
  28. /**
  29. * @ORM\Column(type="integer", nullable=true)
  30. */
  31. private $estudiante;
  32. /**
  33. * @ORM\Column(type="datetime", nullable=true)
  34. */
  35. private $fechaPago;
  36. /**
  37. * @ORM\Column(type="datetime", nullable=true)
  38. */
  39. private $fechaExpiracion;
  40. /**
  41. * @ORM\Column(type="float", nullable=true)
  42. */
  43. private $monto;
  44. /**
  45. * @ORM\Column(type="string", length=50)
  46. */
  47. private $tipo;
  48. /**
  49. * @ORM\Column(type="json", nullable=true)
  50. */
  51. private $detalles = [];
  52. /**
  53. * @ORM\Column(type="integer")
  54. * 1 = activa
  55. * 2 = pendiente de pago
  56. * 3 = vencida
  57. */
  58. private $estado;
  59. /**
  60. * @ORM\Column(type="integer", nullable=true)
  61. */
  62. private $suscripcion;
  63. /**
  64. * @ORM\Column(type="integer", nullable=true)
  65. */
  66. private $cybersourceTransLog;
  67. }