<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* EventosvideollamadaView
*
* @ORM\Table(name="EventosVideollamada", uniqueConstraints={@ORM\UniqueConstraint(name="EventosVideollamada_uuid_key", columns={"uuid"})}, indexes={@ORM\Index(name="IDX_B2A2978AFB34125D", columns={"eventoId"}), @ORM\Index(name="IDX_B2A2978A8D71EDF6", columns={"operadorId"})})
* @ORM\Entity
*/
class EventosvideollamadaView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="EventosVideollamada_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(name="infoVeterinario", type="string", length=255, nullable=true)
*/
private $infoveterinario;
/**
* @var string|null
*
* @ORM\Column(name="uuid", type="string", length=255, nullable=true)
*/
private $uuid;
/**
* @var string|null
*
* @ORM\Column(name="expediente", type="string", length=255, nullable=true)
*/
private $expediente;
/**
* @var string|null
*
* @ORM\Column(name="celCliente", type="string", length=255, nullable=true)
*/
private $celcliente;
/**
* @var bool|null
*
* @ORM\Column(name="vetFormCompleted", type="boolean", nullable=true)
*/
private $vetformcompleted = false;
/**
* @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 \EventosView
*
* @ORM\ManyToOne(targetEntity="EventosView")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="eventoId", referencedColumnName="id")
* })
*/
private $eventoid;
/**
* @var \UsuariosView
*
* @ORM\ManyToOne(targetEntity="UsuariosView")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="operadorId", referencedColumnName="id")
* })
*/
private $operadorid;
public function getId(): ?int
{
return $this->id;
}
public function getInfoveterinario(): ?string
{
return $this->infoveterinario;
}
public function setInfoveterinario(?string $infoveterinario): self
{
$this->infoveterinario = $infoveterinario;
return $this;
}
public function getUuid(): ?string
{
return $this->uuid;
}
public function setUuid(?string $uuid): self
{
$this->uuid = $uuid;
return $this;
}
public function getExpediente(): ?string
{
return $this->expediente;
}
public function setExpediente(?string $expediente): self
{
$this->expediente = $expediente;
return $this;
}
public function getCelcliente(): ?string
{
return $this->celcliente;
}
public function setCelcliente(?string $celcliente): self
{
$this->celcliente = $celcliente;
return $this;
}
public function getVetformcompleted(): ?bool
{
return $this->vetformcompleted;
}
public function setVetformcompleted(?bool $vetformcompleted): self
{
$this->vetformcompleted = $vetformcompleted;
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 getEventoid(): ?EventosView
{
return $this->eventoid;
}
public function setEventoid(?EventosView $eventoid): self
{
$this->eventoid = $eventoid;
return $this;
}
public function getOperadorid(): ?UsuariosView
{
return $this->operadorid;
}
public function setOperadorid(?UsuariosView $operadorid): self
{
$this->operadorid = $operadorid;
return $this;
}
public function isVetformcompleted(): ?bool
{
return $this->vetformcompleted;
}
}