src/Entity/FielpetPol/VetFormControl.php line 19

Open in your IDE?
  1. <?php
  2. namespace App\Entity\FielpetPol;
  3. use App\Entity\Traits\LoggableTrait;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Mapping\Annotation as Gedmo;
  9. /**
  10. * Policy
  11. *
  12. * @ORM\Table(name="vetform_control")
  13. * @ORM\Entity
  14. * @ORM\Entity(repositoryClass="App\Repository\FielpetPol\VetFormControlRepository")
  15. */
  16. class VetFormControl
  17. {
  18. /**
  19. * LoggableTrait add add_user_ add_date, edit_user, edit_date
  20. */
  21. use LoggableTrait;
  22. /**
  23. * @var integer
  24. *
  25. * @ORM\Column(name="id", type="integer", nullable=false)
  26. * @ORM\Id
  27. * @ORM\GeneratedValue(strategy="IDENTITY")
  28. */
  29. private $id;
  30. /**
  31. * @var string
  32. *
  33. * @ORM\Column(name="detalle_tipo", type="string", length=255, nullable=true)
  34. */
  35. private $detalleTipo;
  36. /**
  37. * @var string
  38. *
  39. * @ORM\Column(name="detalle_id", type="string", length=255, nullable=true)
  40. */
  41. private $detalleId;
  42. /**
  43. * @var string
  44. * @ORM\Column(name="fielpet_tabla", type="string", length=255, nullable=true)
  45. */
  46. private $fielpetTabla;
  47. /**
  48. * @var string
  49. * @ORM\Column(name="fielpet_campo", type="string", length=255, nullable=true)
  50. */
  51. private $fielpetCampo;
  52. /**
  53. * @var string
  54. *
  55. * @ORM\Column(name="observaciones", type="string", length=255, nullable=true)
  56. */
  57. private $observaciones;
  58. /**
  59. * @var string
  60. *
  61. * @ORM\Column(name="comparador", type="string", length=255, nullable=true)
  62. */
  63. private $comparador;
  64. public function getId(): ?int
  65. {
  66. return $this->id;
  67. }
  68. public function getDetalleTipo(): ?string
  69. {
  70. return $this->detalleTipo;
  71. }
  72. public function setDetalleTipo(?string $detalleTipo): static
  73. {
  74. $this->detalleTipo = $detalleTipo;
  75. return $this;
  76. }
  77. public function getDetalleId(): ?string
  78. {
  79. return $this->detalleId;
  80. }
  81. public function setDetalleId(?string $detalleId): static
  82. {
  83. $this->detalleId = $detalleId;
  84. return $this;
  85. }
  86. public function getFielpetTabla(): ?string
  87. {
  88. return $this->fielpetTabla;
  89. }
  90. public function setFielpetTabla(?string $fielpetTabla): static
  91. {
  92. $this->fielpetTabla = $fielpetTabla;
  93. return $this;
  94. }
  95. public function getFielpetCampo(): ?string
  96. {
  97. return $this->fielpetCampo;
  98. }
  99. public function setFielpetCampo(?string $fielpetCampo): static
  100. {
  101. $this->fielpetCampo = $fielpetCampo;
  102. return $this;
  103. }
  104. public function getObservaciones(): ?string
  105. {
  106. return $this->observaciones;
  107. }
  108. public function setObservaciones(?string $observaciones): static
  109. {
  110. $this->observaciones = $observaciones;
  111. return $this;
  112. }
  113. public function getComparador(): ?string
  114. {
  115. return $this->comparador;
  116. }
  117. public function setComparador(?string $comparador): static
  118. {
  119. $this->comparador = $comparador;
  120. return $this;
  121. }
  122. }