<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* LeadsView
*
* @ORM\Table(name="LeadsView", indexes={@ORM\Index(name="IDX_D6516A56EA789C08", columns={"LocalidadId"})})
* @ORM\Entity
*/
class LeadsView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="Leads_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(name="nombre_mascota", type="string", length=255, nullable=true)
*/
private $nombreMascota;
/**
* @var string|null
*
* @ORM\Column(name="raza", type="string", length=255, nullable=true)
*/
private $raza;
/**
* @var string|null
*
* @ORM\Column(name="animal", type="string", length=255, nullable=true)
*/
private $animal;
/**
* @var string|null
*
* @ORM\Column(name="sexo_mascota", type="string", length=255, nullable=true)
*/
private $sexoMascota;
/**
* @var string|null
*
* @ORM\Column(name="color", type="string", length=255, nullable=true)
*/
private $color;
/**
* @var \DateTime|null
*
* @ORM\Column(name="nacimiento_mascota", type="custom_datetimetz", nullable=true)
*/
private $nacimientoMascota;
/**
* @var string|null
*
* @ORM\Column(name="descripcion", type="string", length=255, nullable=true)
*/
private $descripcion;
/**
* @var string|null
*
* @ORM\Column(name="dni", type="string", length=255, nullable=true)
*/
private $dni;
/**
* @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 \DateTime|null
*
* @ORM\Column(name="fecha_nacimiento", type="custom_datetimetz", nullable=true)
*/
private $fechaNacimiento;
/**
* @var string|null
*
* @ORM\Column(name="genero", type="string", length=255, nullable=true)
*/
private $genero;
/**
* @var string|null
*
* @ORM\Column(name="tel_fijo", type="string", length=255, nullable=true)
*/
private $telFijo;
/**
* @var string|null
*
* @ORM\Column(name="tel_celular", type="string", length=255, nullable=true)
*/
private $telCelular;
/**
* @var string|null
*
* @ORM\Column(name="direccion", type="string", length=255, nullable=true)
*/
private $direccion;
/**
* @var string|null
*
* @ORM\Column(name="numero", type="string", length=255, nullable=true)
*/
private $numero;
/**
* @var string|null
*
* @ORM\Column(name="piso", type="string", length=255, nullable=true)
*/
private $piso;
/**
* @var string|null
*
* @ORM\Column(name="departamento", type="string", length=255, nullable=true)
*/
private $departamento;
/**
* @var string|null
*
* @ORM\Column(name="email", type="string", length=255, nullable=true)
*/
private $email;
/**
* @var \DateTime
*
* @ORM\Column(name="createdAt", type="custom_datetimetz", nullable=false)
*/
private $createdat;
/**
* @var \DateTime
*
* @ORM\Column(name="updatedAt", type="custom_datetimetz", nullable=false)
*/
private $updatedat;
/**
* @var LocalidadesView
*
* @ORM\ManyToOne(targetEntity="LocalidadesView")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="LocalidadId", referencedColumnName="id")
* })
*/
private $localidadid;
public function getId(): ?int
{
return $this->id;
}
public function getNombreMascota(): ?string
{
return $this->nombreMascota;
}
public function setNombreMascota(?string $nombreMascota): self
{
$this->nombreMascota = $nombreMascota;
return $this;
}
public function getRaza(): ?string
{
return $this->raza;
}
public function setRaza(?string $raza): self
{
$this->raza = $raza;
return $this;
}
public function getAnimal(): ?string
{
return $this->animal;
}
public function setAnimal(?string $animal): self
{
$this->animal = $animal;
return $this;
}
public function getSexoMascota(): ?string
{
return $this->sexoMascota;
}
public function setSexoMascota(?string $sexoMascota): self
{
$this->sexoMascota = $sexoMascota;
return $this;
}
public function getColor(): ?string
{
return $this->color;
}
public function setColor(?string $color): self
{
$this->color = $color;
return $this;
}
public function getNacimientoMascota(): ?\DateTimeInterface
{
return $this->nacimientoMascota;
}
public function setNacimientoMascota(?\DateTimeInterface $nacimientoMascota): self
{
$this->nacimientoMascota = $nacimientoMascota;
return $this;
}
public function getDescripcion(): ?string
{
return $this->descripcion;
}
public function setDescripcion(?string $descripcion): self
{
$this->descripcion = $descripcion;
return $this;
}
public function getDni(): ?string
{
return $this->dni;
}
public function setDni(?string $dni): self
{
$this->dni = $dni;
return $this;
}
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 getFechaNacimiento(): ?\DateTimeInterface
{
return $this->fechaNacimiento;
}
public function setFechaNacimiento(?\DateTimeInterface $fechaNacimiento): self
{
$this->fechaNacimiento = $fechaNacimiento;
return $this;
}
public function getGenero(): ?string
{
return $this->genero;
}
public function setGenero(?string $genero): self
{
$this->genero = $genero;
return $this;
}
public function getTelFijo(): ?string
{
return $this->telFijo;
}
public function setTelFijo(?string $telFijo): self
{
$this->telFijo = $telFijo;
return $this;
}
public function getTelCelular(): ?string
{
return $this->telCelular;
}
public function setTelCelular(?string $telCelular): self
{
$this->telCelular = $telCelular;
return $this;
}
public function getDireccion(): ?string
{
return $this->direccion;
}
public function setDireccion(?string $direccion): self
{
$this->direccion = $direccion;
return $this;
}
public function getNumero(): ?string
{
return $this->numero;
}
public function setNumero(?string $numero): self
{
$this->numero = $numero;
return $this;
}
public function getPiso(): ?string
{
return $this->piso;
}
public function setPiso(?string $piso): self
{
$this->piso = $piso;
return $this;
}
public function getDepartamento(): ?string
{
return $this->departamento;
}
public function setDepartamento(?string $departamento): self
{
$this->departamento = $departamento;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): self
{
$this->email = $email;
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;
}
public function getLocalidadid(): ?LocalidadesView
{
return $this->localidadid;
}
public function setLocalidadid(?LocalidadesView $localidadid): self
{
$this->localidadid = $localidadid;
return $this;
}
}