<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* AaEvidenciaView
*
* @ORM\Table(name="AA_Evidencia", indexes={@ORM\Index(name="IDX_B28B306BCF1679B9", columns={"archivo_adjunto_id"}), @ORM\Index(name="IDX_B28B306B80EE288D", columns={"vetformId"})})
* @ORM\Entity
*/
class AaEvidenciaView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="AA_Evidencia_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @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 \ArchivoadjuntoView
*
* @ORM\ManyToOne(targetEntity="ArchivoadjuntoView")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="archivo_adjunto_id", referencedColumnName="id")
* })
*/
private $archivoAdjunto;
/**
* @var \VetFormView
*
* @ORM\ManyToOne(targetEntity="VetFormView")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="vetformId", referencedColumnName="id")
* })
*/
private $vetformid;
public function getId(): ?int
{
return $this->id;
}
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 getArchivoAdjunto(): ?ArchivoadjuntoView
{
return $this->archivoAdjunto;
}
public function setArchivoAdjunto(?ArchivoadjuntoView $archivoAdjunto): self
{
$this->archivoAdjunto = $archivoAdjunto;
return $this;
}
public function getVetformid(): ?VetFormView
{
return $this->vetformid;
}
public function setVetformid(?VetFormView $vetformid): self
{
$this->vetformid = $vetformid;
return $this;
}
}