<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* VetformlinkView
*
* @ORM\Table(name="VetFormLink")
* @ORM\Entity
*/
class VetformlinkView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="VetFormLink_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string|null
*
* @ORM\Column(name="vetForm", type="string", length=255, nullable=true)
*/
private $vetform;
/**
* @var string|null
*
* @ORM\Column(name="siniestro", type="string", length=255, nullable=true)
*/
private $siniestro;
/**
* @var string|null
*
* @ORM\Column(name="subVetForms", type="string", nullable=true)
*/
private $subvetforms;
/**
* @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;
public function getId(): ?int
{
return $this->id;
}
public function getVetform(): ?string
{
return $this->vetform;
}
public function setVetform(?string $vetform): self
{
$this->vetform = $vetform;
return $this;
}
public function getSiniestro(): ?string
{
return $this->siniestro;
}
public function setSiniestro(?string $siniestro): self
{
$this->siniestro = $siniestro;
return $this;
}
public function getSubvetforms(): ?string
{
return $this->subvetforms;
}
public function setSubvetforms(?string $subvetforms): self
{
$this->subvetforms = $subvetforms;
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;
}
}