src/Entity/FielpetPol/Configuracion.php line 14

Open in your IDE?
  1. <?php
  2. namespace App\Entity\FielpetPol;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * Configuracion
  6. *
  7. * @ORM\Table(name="configuracion")
  8. * @ORM\Entity
  9. * @ORM\Entity(repositoryClass="App\Repository\FielpetPol\ConfiguracionRepository")
  10. */
  11. class Configuracion
  12. {
  13. /**
  14. * @var integer
  15. *
  16. * @ORM\Column(name="id", type="integer", nullable=false)
  17. * @ORM\Id
  18. * @ORM\GeneratedValue(strategy="IDENTITY")
  19. */
  20. private $id;
  21. /**
  22. * @var string
  23. *
  24. * @ORM\Column(name="clave", type="string", length=255, nullable=true)
  25. */
  26. private $clave;
  27. /**
  28. * @var string
  29. *
  30. * @ORM\Column(name="valor", type="string", length=255, nullable=true)
  31. */
  32. private $valor;
  33. /**
  34. * @var string
  35. *
  36. * @ORM\Column(name="parametros", type="string", length=255, nullable=true)
  37. */
  38. private $parametros;
  39. /**
  40. * Get id
  41. *
  42. * @return integer
  43. */
  44. public function getId()
  45. {
  46. return $this->id;
  47. }
  48. /**
  49. * Set clave
  50. *
  51. * @param string $clave
  52. *
  53. * @return Configuracion
  54. */
  55. public function setClave($clave)
  56. {
  57. $this->clave = $clave;
  58. return $this;
  59. }
  60. /**
  61. * Get clave
  62. *
  63. * @return string
  64. */
  65. public function getClave()
  66. {
  67. return $this->clave;
  68. }
  69. /**
  70. * Set valor
  71. *
  72. * @param string $valor
  73. *
  74. * @return Configuracion
  75. */
  76. public function setValor($valor)
  77. {
  78. $this->valor = $valor;
  79. return $this;
  80. }
  81. /**
  82. * Get valor
  83. *
  84. * @return string
  85. */
  86. public function getValor()
  87. {
  88. return $this->valor;
  89. }
  90. /**
  91. * Set parametros
  92. *
  93. * @param string $parametros
  94. *
  95. * @return Configuracion
  96. */
  97. public function setParametros($parametros)
  98. {
  99. $this->parametros = $parametros;
  100. return $this;
  101. }
  102. /**
  103. * Get parametros
  104. *
  105. * @return string
  106. */
  107. public function getParametros()
  108. {
  109. return $this->parametros;
  110. }
  111. }