<?php
namespace App\Entity;
use App\Repository\GestionnaireEntrepriseRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: GestionnaireEntrepriseRepository::class)]
class GestionnaireEntreprise
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private $nom;
#[ORM\Column(length: 255)]
private $prenom;
#[ORM\Column(length: 20)]
private $telephone;
#[ORM\Column(length: 20, nullable: true)]
private $portable;
#[ORM\Column(length: 255)]
private $ville;
#[ORM\ManyToOne(targetEntity: Pays::class)]
#[ORM\JoinColumn(nullable: false)]
private $pays;
#[ORM\Column(length: 255)]
private $adress;
#[ORM\Column(length: 10)]
private $codePostal;
#[ORM\Column(type: "integer")]
private $etatId;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private $dateCreation;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private $dateUpdate;
#[ORM\Column(type: "boolean", nullable: true)]
private $agent;
#[ORM\ManyToOne]
private ?User $user = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $email = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $password = null;
#[ORM\ManyToOne]
private ?Etat $etat = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $civilite = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $num_voie = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $type_voie = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $nom_voie = null;
#[ORM\ManyToOne]
private ?Langue $langue = null;
#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_naissance = null;
#[ORM\ManyToOne]
private ?Departement $departement = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $code_pays_dep = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_acceptation = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $pseudo = null;
public function getId(): ?int
{
return $this->id;
}
public function getNom(): ?string
{
return $this->nom;
}
public function setNom(string $nom): self
{
$this->nom = $nom;
return $this;
}
public function getPrenom(): ?string
{
return $this->prenom;
}
public function setPrenom(string $prenom): self
{
$this->prenom = $prenom;
return $this;
}
public function getTelephone(): ?string
{
return $this->telephone;
}
public function setTelephone(string $telephone): self
{
$this->telephone = $telephone;
return $this;
}
public function getPortable(): ?string
{
return $this->portable;
}
public function setPortable(?string $portable): self
{
$this->portable = $portable;
return $this;
}
public function getVille(): ?string
{
return $this->ville;
}
public function setVille(string $ville): self
{
$this->ville = $ville;
return $this;
}
public function getPays(): ?Pays
{
return $this->pays;
}
public function setPays(?Pays $pays): self
{
$this->pays = $pays;
return $this;
}
public function getAdress(): ?string
{
return $this->adress;
}
public function setAdress(string $adress): self
{
$this->adress = $adress;
return $this;
}
public function getCodePostal(): ?string
{
return $this->codePostal;
}
public function setCodePostal(string $codePostal): self
{
$this->codePostal = $codePostal;
return $this;
}
public function getEtatId(): ?int
{
return $this->etatId;
}
public function setEtatId(int $etatId): self
{
$this->etatId = $etatId;
return $this;
}
public function getProfessionalId(): ?int
{
return $this->professionalId;
}
public function setProfessionalId(int $professionalId): self
{
$this->professionalId = $professionalId;
return $this;
}
public function isAgent(): ?bool
{
return $this->agent;
}
public function setAgent(bool $agent): self
{
$this->agent = $agent;
return $this;
}
public function getDateCreation(): ?\DateTimeInterface
{
return $this->dateCreation;
}
public function setDateCreation(\DateTimeInterface $dateCreation): self
{
$this->dateCreation = $dateCreation;
return $this;
}
public function getDateUpdate(): ?\DateTimeInterface
{
return $this->dateUpdate;
}
public function setDateUpdate(\DateTimeInterface $dateUpdate): self
{
$this->dateUpdate = $dateUpdate;
return $this;
}
public function getUser(): ?User
{
return $this->user;
}
public function setUser(?User $user): static
{
$this->user = $user;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): static
{
$this->email = $email;
return $this;
}
public function getPassword(): ?string
{
return $this->password;
}
public function setPassword(?string $password): static
{
$this->password = $password;
return $this;
}
public function getEtat(): ?Etat
{
return $this->etat;
}
public function setEtat(?Etat $etat): static
{
$this->etat = $etat;
return $this;
}
public function getCivilite(): ?string
{
return $this->civilite;
}
public function setCivilite(?string $civilite): static
{
$this->civilite = $civilite;
return $this;
}
public function getNumVoie(): ?string
{
return $this->num_voie;
}
public function setNumVoie(?string $num_voie): static
{
$this->num_voie = $num_voie;
return $this;
}
public function getTypeVoie(): ?string
{
return $this->type_voie;
}
public function setTypeVoie(?string $type_voie): static
{
$this->type_voie = $type_voie;
return $this;
}
public function getNomVoie(): ?string
{
return $this->nom_voie;
}
public function setNomVoie(?string $nom_voie): static
{
$this->nom_voie = $nom_voie;
return $this;
}
public function getLangue(): ?Langue
{
return $this->langue;
}
public function setLangue(?Langue $langue): static
{
$this->langue = $langue;
return $this;
}
public function getDateNaissance(): ?\DateTimeInterface
{
return $this->date_naissance;
}
public function setDateNaissance(?\DateTimeInterface $date_naissance): static
{
$this->date_naissance = $date_naissance;
return $this;
}
public function getDepartement(): ?Departement
{
return $this->departement;
}
public function setDepartement(?Departement $departement): static
{
$this->departement = $departement;
return $this;
}
public function getCodePaysDep(): ?string
{
return $this->code_pays_dep;
}
public function setCodePaysDep(?string $code_pays_dep): static
{
$this->code_pays_dep = $code_pays_dep;
return $this;
}
public function getDateAcceptation(): ?\DateTimeInterface
{
return $this->date_acceptation;
}
public function setDateAcceptation(?\DateTimeInterface $date_acceptation): static
{
$this->date_acceptation = $date_acceptation;
return $this;
}
public function getPseudo(): ?string
{
return $this->pseudo;
}
public function setPseudo(?string $pseudo): static
{
$this->pseudo = $pseudo;
return $this;
}
}