<?php
namespace App\Entity\Fielpet\View;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
/**
* Descripcionclasificacion
*
* @ORM\Table(name="DescripcionClasificacion", indexes={@ORM\Index(name="IDX_3F5ADF585119503", columns={"clasificacionSintomaId"})})
* @ORM\Entity
*/
class Descripcionclasificacion
{
/**
* @var int
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="SEQUENCE")
* @ORM\SequenceGenerator(sequenceName="DescripcionClasificacion_id_seq", allocationSize=1, initialValue=1)
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="valor", type="string", length=255, nullable=false)
*/
private $valor;
/**
* @var string
*
* @ORM\Column(name="selectores", type="string", nullable=false)
*/
private $selectores;
/**
* @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 \ClasificacionsintomaView
*
* @ORM\ManyToOne(targetEntity="ClasificacionsintomaView")
* @ORM\JoinColumns({
* @ORM\JoinColumn(name="clasificacionSintomaId", referencedColumnName="id")
* })
*/
private $clasificacionsintomaid;
public function getId(): ?int
{
return $this->id;
}
public function getValor(): ?string
{
return $this->valor;
}
public function setValor(string $valor): self
{
$this->valor = $valor;
return $this;
}
public function getSelectores(): ?string
{
return $this->selectores;
}
public function setSelectores(string $selectores): self
{
$this->selectores = $selectores;
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 getClasificacionsintomaid(): ?ClasificacionsintomaView
{
return $this->clasificacionsintomaid;
}
public function setClasificacionsintomaid(?ClasificacionsintomaView $clasificacionsintomaid): self
{
$this->clasificacionsintomaid = $clasificacionsintomaid;
return $this;
}
}