<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* SintomaView
*
* @ORM\Table(name="sintoma_view")
* @ORM\Entity
* @ORM\Entity(repositoryClass="App\Repository\Fielpet\View\SintomaViewRepository")
*/
class SintomaView
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="nombre", type="string", length=255, nullable=false)
*/
private $nombre;
/**
* @var string|null
*
* @ORM\Column(name="clasificaciones", type="string", nullable=true, options={"default"="ARRAY[]::character varying[]"})
*/
private $clasificaciones = '';
/**
* @var bool|null
*
* @ORM\Column(name="evidencia", type="boolean", nullable=true)
*/
private $evidencia;
/**
* @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
*/
public function getNombre(): string
{
return $this->nombre;
}
/**
* @param string $nombre
*/
public function setNombre(string $nombre): void
{
$this->nombre = $nombre;
}
/**
* @return string|null
*/
public function getClasificaciones(): ?string
{
return $this->clasificaciones;
}
/**
* @param string|null $clasificaciones
*/
public function setClasificaciones(?string $clasificaciones): void
{
$this->clasificaciones = $clasificaciones;
}
/**
* @return bool|null
*/
public function getEvidencia(): ?bool
{
return $this->evidencia;
}
/**
* @param bool|null $evidencia
*/
public function setEvidencia(?bool $evidencia): void
{
$this->evidencia = $evidencia;
}
/**
* @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;
}
}