<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* AaComprobanteclienteView
*
* @ORM\Table(name="AA_ComprobanteCliente", indexes={@ORM\Index(name="IDX_9F58BB1DCF1679B9", columns={"archivo_adjunto_id"}), @ORM\Index(name="IDX_9F58BB1DE12C1", columns={"VetFormId"})})
* @ORM\Entity
*/
class AaComprobanteclienteView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="AA_ComprobanteCliente_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(name="concepto", type="string", length=255, nullable=true)
*/
private $concepto;
/**
* @var string|null
*
* @ORM\Column(name="monto", type="string", length=255, nullable=true)
*/
private $monto;
/**
* @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 getConcepto(): ?string
{
return $this->concepto;
}
public function setConcepto(?string $concepto): self
{
$this->concepto = $concepto;
return $this;
}
public function getMonto(): ?string
{
return $this->monto;
}
public function setMonto(?string $monto): self
{
$this->monto = $monto;
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 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;
}
}