<?phpnamespace App\Entity\Fielpet\View;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/** * EstudioView * * @ORM\Table(name="estudio_view") * @ORM\Entity * @ORM\Entity(repositoryClass="App\Repository\Fielpet\View\EstudioViewRepository") */class EstudioView{ /** * @var int * * @ORM\Column(name="id", type="integer", nullable=false) * @ORM\Id */ private $id; /** * @var string|null * * @ORM\Column(name="tipo_estudio", type="string", length=255, nullable=true) */ private $tipoEstudio; /** * @var \DateTime * * @ORM\Column(name="created_at", type="custom_datetimetz", nullable=false) */ private $createdAt; /** * @var \DateTime * * @ORM\Column(name="updated_at", type="custom_datetimetz", nullable=false) */ private $updatedAt; /** * @return int */ public function getId(): int { return $this->id; } /** * @param int $id */ public function setId(int $id): void { $this->id = $id; } /** * @return string|null */ public function getTipoEstudio(): ?string { return $this->tipoEstudio; } /** * @param string|null $tipoEstudio */ public function setTipoEstudio(?string $tipoEstudio): void { $this->tipoEstudio = $tipoEstudio; } /** * @return \DateTime */ public function getCreatedAt(): \DateTime { return $this->createdAt; } /** * @param \DateTime $createdAt */ public function setCreatedAt(\DateTime $createdAt): void { $this->createdAt = $createdAt; } /** * @return \DateTime */ public function getUpdatedAt(): \DateTime { return $this->updatedAt; } /** * @param \DateTime $updatedAt */ public function setUpdatedAt(\DateTime $updatedAt): void { $this->updatedAt = $updatedAt; }}