<?phpnamespace App\Entity;use App\Repository\MembreRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: MembreRepository::class)]class Membre{ public const UNITE_REGIONAL = 'Unité régionale NABEUL'; public const REGIONAL = 'régionale'; public const CENTRALE = 'Central'; #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private $id; #[ORM\Column(type: 'string', length: 255)] private $nomprenom; #[ORM\Column(type: 'string', length: 255)] private $photo; #[ORM\Column(type: 'string', length: 255)] private $diplome; #[ORM\Column(type: 'string', length: 255)] private $poste; #[ORM\Column(type: 'string', length: 255)] private $tache_attribuees; #[ORM\Column(type: 'date')] private $date_tache; #[ORM\Column(type: 'string', length: 255)] private $regional; #[ORM\Column(type: 'string', length: 255)] private $cv; #[ORM\Column(type: 'integer')] private $experience; public function getId(): ?int { return $this->id; } public function getNomprenom(): ?string { return $this->nomprenom; } public function setNomprenom(string $nomprenom): self { $this->nomprenom = $nomprenom; return $this; } public function getPhoto(): ?string { return $this->photo; } public function setPhoto(string $photo): self { $this->photo = $photo; return $this; } public function getDiplome(): ?string { return $this->diplome; } public function setDiplome(string $diplome): self { $this->diplome = $diplome; return $this; } public function getPoste(): ?string { return $this->poste; } public function setPoste(string $poste): self { $this->poste = $poste; return $this; } public function getTacheAttribuees(): ?string { return $this->tache_attribuees; } public function setTacheAttribuees(string $tache_attribuees): self { $this->tache_attribuees = $tache_attribuees; return $this; } public function getDateTache(): ?\DateTimeInterface { return $this->date_tache; } public function setDateTache(\DateTimeInterface $date_tache): self { $this->date_tache = $date_tache; return $this; } public function getRegional(): ?string { return $this->regional; } public function setRegional(string $regional): self { $this->regional = $regional; return $this; } public function getCv(): ?string { return $this->cv; } public function setCv(string $cv): self { $this->cv = $cv; return $this; } public function getExperience(): ?int { return $this->experience; } public function setExperience(int $experience): self { $this->experience = $experience; return $this; }}