src/Entity/Bureau.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\BureauRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassBureauRepository::class)]
  6. class Bureau
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length1000)]
  13.     private ?string $adreBure null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $villBure null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $teleBure null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $faxBure null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $libeBure null;
  22.     #[ORM\Column]
  23.     private ?int $etatBure null;
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getAdreBure(): ?string
  29.     {
  30.         return $this->adreBure;
  31.     }
  32.     public function setAdreBure(string $adreBure): static
  33.     {
  34.         $this->adreBure $adreBure;
  35.         return $this;
  36.     }
  37.     public function getVillBure(): ?string
  38.     {
  39.         return $this->villBure;
  40.     }
  41.     public function setVillBure(string $villBure): static
  42.     {
  43.         $this->villBure $villBure;
  44.         return $this;
  45.     }
  46.     public function getTeleBure(): ?string
  47.     {
  48.         return $this->teleBure;
  49.     }
  50.     public function setTeleBure(string $teleBure): static
  51.     {
  52.         $this->teleBure $teleBure;
  53.         return $this;
  54.     }
  55.     public function getFaxBure(): ?string
  56.     {
  57.         return $this->faxBure;
  58.     }
  59.     public function setFaxBure(?string $faxBure): static
  60.     {
  61.         $this->faxBure $faxBure;
  62.         return $this;
  63.     }
  64.     public function getLibeBure(): ?string
  65.     {
  66.         return $this->libeBure;
  67.     }
  68.     public function setLibeBure(string $libeBure): static
  69.     {
  70.         $this->libeBure $libeBure;
  71.         return $this;
  72.     }
  73.     public function getEtatBure(): ?int
  74.     {
  75.         return $this->etatBure;
  76.     }
  77.     public function setEtatBure(int $etatBure): static
  78.     {
  79.         $this->etatBure $etatBure;
  80.         return $this;
  81.     }
  82. }