src/Entity/Fielpet/View/VeterinarioView.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity\Fielpet\View;
  3. use Doctrine\DBAL\Types\Types;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6. * VeterinarioView
  7. *
  8. * @ORM\Table(name="veterinario_view")
  9. * @ORM\Entity
  10. */
  11. class VeterinarioView
  12. {
  13. /**
  14. * @var int
  15. *
  16. * @ORM\Column(name="id", type="integer", nullable=false)
  17. * @ORM\Id
  18. * @ORM\GeneratedValue(strategy="SEQUENCE")
  19. * @ORM\SequenceGenerator(sequenceName="Veterinario_id_seq", allocationSize=1, initialValue=1)
  20. */
  21. private $id;
  22. /**
  23. * @var string|null
  24. *
  25. * @ORM\Column(name="nombre", type="string", length=255, nullable=true)
  26. */
  27. private $nombre;
  28. /**
  29. * @var string|null
  30. *
  31. * @ORM\Column(name="apellido", type="string", length=255, nullable=true)
  32. */
  33. private $apellido;
  34. /**
  35. * @var string|null
  36. *
  37. * @ORM\Column(name="telefono", type="string", length=255, nullable=true)
  38. */
  39. private $telefono;
  40. /**
  41. * @var string|null
  42. *
  43. * @ORM\Column(name="colegio", type="string", length=255, nullable=true)
  44. */
  45. private $colegio;
  46. /**
  47. * @var string|null
  48. *
  49. * @ORM\Column(name="matricula", type="string", length=255, nullable=true)
  50. */
  51. private $matricula;
  52. /**
  53. * @var string|null
  54. *
  55. * @ORM\Column(name="domicilio", type="string", length=255, nullable=true)
  56. */
  57. private $domicilio;
  58. /**
  59. * @var string|null
  60. *
  61. * @ORM\Column(name="mail", type="string", length=255, nullable=true)
  62. */
  63. private $mail;
  64. /**
  65. * @var string|null
  66. *
  67. * @ORM\Column(name="especialidad", type="string", length=255, nullable=true)
  68. */
  69. private $especialidad;
  70. /**
  71. * @var string|null
  72. *
  73. * @ORM\Column(name="horario_contacto", type="string", length=255, nullable=true)
  74. */
  75. private $horarioContacto;
  76. /**
  77. * @var \DateTime
  78. *
  79. * @ORM\Column(name="created_at", type="custom_datetimetz", nullable=false)
  80. */
  81. private $createdat;
  82. /**
  83. * @var \DateTime
  84. *
  85. * @ORM\Column(name="updated_at", type="custom_datetimetz", nullable=false)
  86. */
  87. private $updatedat;
  88. public function getId(): ?int
  89. {
  90. return $this->id;
  91. }
  92. public function getNombre(): ?string
  93. {
  94. return $this->nombre;
  95. }
  96. public function setNombre(?string $nombre): self
  97. {
  98. $this->nombre = $nombre;
  99. return $this;
  100. }
  101. public function getApellido(): ?string
  102. {
  103. return $this->apellido;
  104. }
  105. public function setApellido(?string $apellido): self
  106. {
  107. $this->apellido = $apellido;
  108. return $this;
  109. }
  110. public function getTelefono(): ?string
  111. {
  112. return $this->telefono;
  113. }
  114. public function setTelefono(?string $telefono): self
  115. {
  116. $this->telefono = $telefono;
  117. return $this;
  118. }
  119. public function getColegio(): ?string
  120. {
  121. return $this->colegio;
  122. }
  123. public function setColegio(?string $colegio): self
  124. {
  125. $this->colegio = $colegio;
  126. return $this;
  127. }
  128. public function getMatricula(): ?string
  129. {
  130. return $this->matricula;
  131. }
  132. public function setMatricula(?string $matricula): self
  133. {
  134. $this->matricula = $matricula;
  135. return $this;
  136. }
  137. public function getDni(): ?string
  138. {
  139. return $this->dni;
  140. }
  141. public function setDni(?string $dni): self
  142. {
  143. $this->dni = $dni;
  144. return $this;
  145. }
  146. public function getDomicilio(): ?string
  147. {
  148. return $this->domicilio;
  149. }
  150. public function setDomicilio(?string $domicilio): self
  151. {
  152. $this->domicilio = $domicilio;
  153. return $this;
  154. }
  155. public function getMail(): ?string
  156. {
  157. return $this->mail;
  158. }
  159. public function setMail(?string $mail): self
  160. {
  161. $this->mail = $mail;
  162. return $this;
  163. }
  164. public function getEspecialidad(): ?string
  165. {
  166. return $this->especialidad;
  167. }
  168. public function setEspecialidad(?string $especialidad): self
  169. {
  170. $this->especialidad = $especialidad;
  171. return $this;
  172. }
  173. public function getHorarioContacto(): ?string
  174. {
  175. return $this->horarioContacto;
  176. }
  177. public function setHorarioContacto(?string $horarioContacto): self
  178. {
  179. $this->horarioContacto = $horarioContacto;
  180. return $this;
  181. }
  182. public function getCreatedat(): ?\DateTimeInterface
  183. {
  184. return $this->createdat;
  185. }
  186. public function setCreatedat(\DateTimeInterface $createdat): self
  187. {
  188. $this->createdat = $createdat;
  189. return $this;
  190. }
  191. public function getUpdatedat(): ?\DateTimeInterface
  192. {
  193. return $this->updatedat;
  194. }
  195. public function setUpdatedat(\DateTimeInterface $updatedat): self
  196. {
  197. $this->updatedat = $updatedat;
  198. return $this;
  199. }
  200. }