<?php
namespace App\Entity;
use App\Repository\BureauRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: BureauRepository::class)]
class Bureau
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 1000)]
private ?string $adreBure = null;
#[ORM\Column(length: 255)]
private ?string $villBure = null;
#[ORM\Column(length: 255)]
private ?string $teleBure = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $faxBure = null;
#[ORM\Column(length: 255)]
private ?string $libeBure = null;
#[ORM\Column]
private ?int $etatBure = null;
public function getId(): ?int
{
return $this->id;
}
public function getAdreBure(): ?string
{
return $this->adreBure;
}
public function setAdreBure(string $adreBure): static
{
$this->adreBure = $adreBure;
return $this;
}
public function getVillBure(): ?string
{
return $this->villBure;
}
public function setVillBure(string $villBure): static
{
$this->villBure = $villBure;
return $this;
}
public function getTeleBure(): ?string
{
return $this->teleBure;
}
public function setTeleBure(string $teleBure): static
{
$this->teleBure = $teleBure;
return $this;
}
public function getFaxBure(): ?string
{
return $this->faxBure;
}
public function setFaxBure(?string $faxBure): static
{
$this->faxBure = $faxBure;
return $this;
}
public function getLibeBure(): ?string
{
return $this->libeBure;
}
public function setLibeBure(string $libeBure): static
{
$this->libeBure = $libeBure;
return $this;
}
public function getEtatBure(): ?int
{
return $this->etatBure;
}
public function setEtatBure(int $etatBure): static
{
$this->etatBure = $etatBure;
return $this;
}
}