src/Entity/SenacsConfiguration.php line 18

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Entity;
  4. use App\Repository\SenacsConfigurationRepository;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8. * SenacsConfiguration.
  9. *
  10. * @ORM\Table(name="SenacsConfiguration")
  11. *
  12. * @ORM\Entity(repositoryClass=SenacsConfigurationRepository::class)
  13. */
  14. class SenacsConfiguration
  15. {
  16. /**
  17. * @var int
  18. *
  19. * @ORM\Column(name="id", type="integer")
  20. *
  21. * @ORM\Id
  22. *
  23. * @ORM\GeneratedValue(strategy="AUTO")
  24. */
  25. private $id;
  26. /**
  27. * @var string
  28. *
  29. * @ORM\Column(name="senacsConfigKey", type="string", length=255)
  30. */
  31. private $senacsConfigKey;
  32. /**
  33. * @var string
  34. *
  35. * @ORM\Column(name="senacsConfigValue", type="text")
  36. */
  37. private $senacsConfigValue;
  38. /**
  39. * Get id.
  40. *
  41. * @return int
  42. */
  43. public function getId()
  44. {
  45. return $this->id;
  46. }
  47. /**
  48. * Set senacsConfigKey.
  49. *
  50. * @param string $senacsConfigKey
  51. */
  52. public function setSenacsConfigKey($senacsConfigKey): static
  53. {
  54. $this->senacsConfigKey = $senacsConfigKey;
  55. return $this;
  56. }
  57. /**
  58. * Get senacsConfigKey.
  59. *
  60. * @return string
  61. */
  62. public function getSenacsConfigKey()
  63. {
  64. return $this->senacsConfigKey;
  65. }
  66. /**
  67. * Set senacsConfigValue.
  68. *
  69. * @param string $senacsConfigValue
  70. */
  71. public function setSenacsConfigValue($senacsConfigValue): static
  72. {
  73. $this->senacsConfigValue = $senacsConfigValue;
  74. return $this;
  75. }
  76. /**
  77. * Get senacsConfigValue.
  78. *
  79. * @return string
  80. */
  81. public function getSenacsConfigValue()
  82. {
  83. return $this->senacsConfigValue;
  84. }
  85. }