src/Entity/Feedback.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FeedbackRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * @ORM\Entity(repositoryClass=FeedbackRepository::class)
  7. */
  8. class Feedback
  9. {
  10. /**
  11. * @ORM\Id
  12. * @ORM\GeneratedValue
  13. * @ORM\Column(type="integer")
  14. */
  15. private $id;
  16. /**
  17. * @ORM\Column(type="string", length=255, nullable=true)
  18. */
  19. private $plataforma;
  20. /**
  21. * @ORM\Column(type="string", length=255, nullable=true)
  22. */
  23. private $dispositivo;
  24. /**
  25. * @ORM\Column(type="string", length=255, nullable=true)
  26. */
  27. private $navegador;
  28. /**
  29. * @ORM\Column(type="string", length=255, nullable=true)
  30. */
  31. private $otro;
  32. /**
  33. * @ORM\Column(type="string", length=255, nullable=true)
  34. */
  35. private $ip;
  36. /**
  37. * @ORM\Column(type="string", length=255, nullable=true)
  38. */
  39. private $TipoUso;
  40. /**
  41. * @ORM\Column(type="integer", nullable=true)
  42. */
  43. private $cantidad_estudiantes;
  44. /**
  45. * @ORM\Column(type="text", nullable=true)
  46. */
  47. private $opinion_comentarios;
  48. /**
  49. * @ORM\Column(type="string", length=255, nullable=true)
  50. */
  51. private $env;
  52. /**
  53. * @ORM\Column(type="string", length=255, nullable=true)
  54. */
  55. private $otro_uso;
  56. public function getId(): ?int
  57. {
  58. return $this->id;
  59. }
  60. public function getPlataforma(): ?string
  61. {
  62. return $this->plataforma;
  63. }
  64. public function setPlataforma(?string $plataforma): self
  65. {
  66. $this->plataforma = $plataforma;
  67. return $this;
  68. }
  69. public function getDispositivo(): ?string
  70. {
  71. return $this->dispositivo;
  72. }
  73. public function setDispositivo(?string $dispositivo): self
  74. {
  75. $this->dispositivo = $dispositivo;
  76. return $this;
  77. }
  78. public function getNavegador(): ?string
  79. {
  80. return $this->navegador;
  81. }
  82. public function setNavegador(?string $navegador): self
  83. {
  84. $this->navegador = $navegador;
  85. return $this;
  86. }
  87. public function getOtro(): ?string
  88. {
  89. return $this->otro;
  90. }
  91. public function setOtro(?string $otro): self
  92. {
  93. $this->otro = $otro;
  94. return $this;
  95. }
  96. public function getIp(): ?string
  97. {
  98. return $this->ip;
  99. }
  100. public function setIp(?string $ip): self
  101. {
  102. $this->ip = $ip;
  103. return $this;
  104. }
  105. public function getTipoUso(): ?string
  106. {
  107. return $this->TipoUso;
  108. }
  109. public function setTipoUso(?string $TipoUso): self
  110. {
  111. $this->TipoUso = $TipoUso;
  112. return $this;
  113. }
  114. public function getCantidadEstudiantes(): ?int
  115. {
  116. return $this->cantidad_estudiantes;
  117. }
  118. public function setCantidadEstudiantes(?int $cantidad_estudiantes): self
  119. {
  120. $this->cantidad_estudiantes = $cantidad_estudiantes;
  121. return $this;
  122. }
  123. public function getOpinionComentarios(): ?string
  124. {
  125. return $this->opinion_comentarios;
  126. }
  127. public function setOpinionComentarios(?string $opinion_comentarios): self
  128. {
  129. $this->opinion_comentarios = $opinion_comentarios;
  130. return $this;
  131. }
  132. public function getEnv(): ?string
  133. {
  134. return $this->env;
  135. }
  136. public function setEnv(?string $env): self
  137. {
  138. $this->env = $env;
  139. return $this;
  140. }
  141. public function getOtroUso(): ?string
  142. {
  143. return $this->otro_uso;
  144. }
  145. public function setOtroUso(?string $otro_uso): self
  146. {
  147. $this->otro_uso = $otro_uso;
  148. return $this;
  149. }
  150. }