<?php
namespace App\Entity\FielpetPol;
use App\Entity\Traits\LoggableTrait;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Mapping\Annotation as Gedmo;
/**
* Policy
*
* @ORM\Table(name="vetform_control")
* @ORM\Entity
* @ORM\Entity(repositoryClass="App\Repository\FielpetPol\VetFormControlRepository")
*/
class VetFormControl
{
/**
* LoggableTrait add add_user_ add_date, edit_user, edit_date
*/
use LoggableTrait;
/**
* @var integer
*
* @ORM\Column(name="id", type="integer", nullable=false)
* @ORM\Id
* @ORM\GeneratedValue(strategy="IDENTITY")
*/
private $id;
/**
* @var string
*
* @ORM\Column(name="detalle_tipo", type="string", length=255, nullable=true)
*/
private $detalleTipo;
/**
* @var string
*
* @ORM\Column(name="detalle_id", type="string", length=255, nullable=true)
*/
private $detalleId;
/**
* @var string
* @ORM\Column(name="fielpet_tabla", type="string", length=255, nullable=true)
*/
private $fielpetTabla;
/**
* @var string
* @ORM\Column(name="fielpet_campo", type="string", length=255, nullable=true)
*/
private $fielpetCampo;
/**
* @var string
*
* @ORM\Column(name="observaciones", type="string", length=255, nullable=true)
*/
private $observaciones;
/**
* @var string
*
* @ORM\Column(name="comparador", type="string", length=255, nullable=true)
*/
private $comparador;
public function getId(): ?int
{
return $this->id;
}
public function getDetalleTipo(): ?string
{
return $this->detalleTipo;
}
public function setDetalleTipo(?string $detalleTipo): static
{
$this->detalleTipo = $detalleTipo;
return $this;
}
public function getDetalleId(): ?string
{
return $this->detalleId;
}
public function setDetalleId(?string $detalleId): static
{
$this->detalleId = $detalleId;
return $this;
}
public function getFielpetTabla(): ?string
{
return $this->fielpetTabla;
}
public function setFielpetTabla(?string $fielpetTabla): static
{
$this->fielpetTabla = $fielpetTabla;
return $this;
}
public function getFielpetCampo(): ?string
{
return $this->fielpetCampo;
}
public function setFielpetCampo(?string $fielpetCampo): static
{
$this->fielpetCampo = $fielpetCampo;
return $this;
}
public function getObservaciones(): ?string
{
return $this->observaciones;
}
public function setObservaciones(?string $observaciones): static
{
$this->observaciones = $observaciones;
return $this;
}
public function getComparador(): ?string
{
return $this->comparador;
}
public function setComparador(?string $comparador): static
{
$this->comparador = $comparador;
return $this;
}
}