src/Entity/Parametre.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ParametreRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClass: ParametreRepository::class)]
  6. #[ORM\Table(name: "Parametre")]
  7. class Parametre
  8. {
  9. #[ORM\Id]
  10. #[ORM\GeneratedValue]
  11. #[ORM\Column(type: 'integer')]
  12. private ?int $id = null;
  13. #[ORM\Column(length: 255)]
  14. private ?string $rue = null;
  15. #[ORM\Column(length: 255)]
  16. private ?string $bp = null;
  17. #[ORM\Column(length: 255)]
  18. private ?string $cms = null;
  19. #[ORM\Column(length: 255)]
  20. private ?string $telsiege = null;
  21. #[ORM\Column(length: 255)]
  22. private ?string $telclinique = null;
  23. public function getId(): ?int
  24. {
  25. return $this->id;
  26. }
  27. public function getRue(): ?string
  28. {
  29. return $this->rue;
  30. }
  31. public function setRue($rue): self
  32. {
  33. $this->rue = $rue;
  34. return $this;
  35. }
  36. public function getCms(): ?string
  37. {
  38. return $this->cms;
  39. }
  40. public function setCms($cms): self
  41. {
  42. $this->cms = $cms;
  43. return $this;
  44. }
  45. public function getBp(): ?string
  46. {
  47. return $this->bp;
  48. }
  49. public function setBp($bp): self
  50. {
  51. $this->bp = $bp;
  52. return $this;
  53. }
  54. public function getTelsiege(): ?string
  55. {
  56. return $this->telsiege;
  57. }
  58. public function setTelsiege($telsiege): self
  59. {
  60. $this->telsiege = $telsiege;
  61. return $this;
  62. }
  63. public function getTelclinique(): ?string
  64. {
  65. return $this->telclinique;
  66. }
  67. public function setTelclinique($telclinique): self
  68. {
  69. $this->telclinique = $telclinique;
  70. return $this;
  71. }
  72. }