src/Entity/AuditPagoSubscripcion.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AuditPagoSubscripcionRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=AuditPagoSubscripcionRepository::class)
  7. */
  8. class AuditPagoSubscripcion
  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. * cupoAlumnosCurso
  47. * cursosMaestro
  48. * cursosEstudiante
  49. */
  50. private $tipo;
  51. /**
  52. * @ORM\Column(type="json", nullable=true)
  53. */
  54. private $detalles = [];
  55. /**
  56. * @ORM\Column(type="integer")
  57. * 1 = activa
  58. * 2 = vencida, pendiente de pago, 3 dias de gracia
  59. * 3 = vencida, inhabilitada
  60. * 4 = invalida
  61. */
  62. private $estado;
  63. }