<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* VeterinarioView
*
* @ORM\Table(name="veterinario_view")
* @ORM\Entity
*/
class VeterinarioView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="Veterinario_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(name="nombre", type="string", length=255, nullable=true)
*/
private $nombre;
/**
* @var string|null
*
* @ORM\Column(name="apellido", type="string", length=255, nullable=true)
*/
private $apellido;
/**
* @var string|null
*
* @ORM\Column(name="telefono", type="string", length=255, nullable=true)
*/
private $telefono;
/**
* @var string|null
*
* @ORM\Column(name="colegio", type="string", length=255, nullable=true)
*/
private $colegio;
/**
* @var string|null
*
* @ORM\Column(name="matricula", type="string", length=255, nullable=true)
*/
private $matricula;
/**
* @var string|null
*
* @ORM\Column(name="domicilio", type="string", length=255, nullable=true)
*/
private $domicilio;
/**
* @var string|null
*
* @ORM\Column(name="mail", type="string", length=255, nullable=true)
*/
private $mail;
/**
* @var string|null
*
* @ORM\Column(name="especialidad", type="string", length=255, nullable=true)
*/
private $especialidad;
/**
* @var string|null
*
* @ORM\Column(name="horario_contacto", type="string", length=255, nullable=true)
*/
private $horarioContacto;
/**
* @var \DateTime
*
* @ORM\Column(name="created_at", type="custom_datetimetz", nullable=false)
*/
private $createdat;
/**
* @var \DateTime
*
* @ORM\Column(name="updated_at", type="custom_datetimetz", nullable=false)
*/
private $updatedat;
public function getId(): ?int
{
return $this->id;
}
public function getNombre(): ?string
{
return $this->nombre;
}
public function setNombre(?string $nombre): self
{
$this->nombre = $nombre;
return $this;
}
public function getApellido(): ?string
{
return $this->apellido;
}
public function setApellido(?string $apellido): self
{
$this->apellido = $apellido;
return $this;
}
public function getTelefono(): ?string
{
return $this->telefono;
}
public function setTelefono(?string $telefono): self
{
$this->telefono = $telefono;
return $this;
}
public function getColegio(): ?string
{
return $this->colegio;
}
public function setColegio(?string $colegio): self
{
$this->colegio = $colegio;
return $this;
}
public function getMatricula(): ?string
{
return $this->matricula;
}
public function setMatricula(?string $matricula): self
{
$this->matricula = $matricula;
return $this;
}
public function getDni(): ?string
{
return $this->dni;
}
public function setDni(?string $dni): self
{
$this->dni = $dni;
return $this;
}
public function getDomicilio(): ?string
{
return $this->domicilio;
}
public function setDomicilio(?string $domicilio): self
{
$this->domicilio = $domicilio;
return $this;
}
public function getMail(): ?string
{
return $this->mail;
}
public function setMail(?string $mail): self
{
$this->mail = $mail;
return $this;
}
public function getEspecialidad(): ?string
{
return $this->especialidad;
}
public function setEspecialidad(?string $especialidad): self
{
$this->especialidad = $especialidad;
return $this;
}
public function getHorarioContacto(): ?string
{
return $this->horarioContacto;
}
public function setHorarioContacto(?string $horarioContacto): self
{
$this->horarioContacto = $horarioContacto;
return $this;
}
public function getCreatedat(): ?\DateTimeInterface
{
return $this->createdat;
}
public function setCreatedat(\DateTimeInterface $createdat): self
{
$this->createdat = $createdat;
return $this;
}
public function getUpdatedat(): ?\DateTimeInterface
{
return $this->updatedat;
}
public function setUpdatedat(\DateTimeInterface $updatedat): self
{
$this->updatedat = $updatedat;
return $this;
}
}