src/Entity/GestionnaireEntreprise.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\GestionnaireEntrepriseRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassGestionnaireEntrepriseRepository::class)]
  7. class GestionnaireEntreprise 
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private $nom;
  15.     #[ORM\Column(length255)]
  16.     private $prenom;
  17.     #[ORM\Column(length20)]
  18.     private $telephone;
  19.     #[ORM\Column(length20nullabletrue)]
  20.     private $portable;
  21.     #[ORM\Column(length255)]
  22.     private $ville;
  23.     #[ORM\ManyToOne(targetEntityPays::class)]
  24.     #[ORM\JoinColumn(nullablefalse)]
  25.     private $pays;
  26.     #[ORM\Column(length255)]
  27.     private $adress;
  28.     #[ORM\Column(length10)]
  29.     private $codePostal;
  30.     #[ORM\Column(type"integer")]
  31.     private $etatId;
  32.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  33.    
  34.     private $dateCreation;
  35.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  36.    
  37.     private $dateUpdate;
  38.     #[ORM\Column(type"boolean"nullabletrue)]
  39.     private $agent;
  40.   
  41.     #[ORM\ManyToOne]
  42.     private ?User $user null;
  43.     
  44.    
  45.     #[ORM\Column(length255nullabletrue)]
  46.     private ?string $email null;
  47.     #[ORM\Column(length255nullabletrue)]
  48.     private ?string $password null;
  49.     #[ORM\ManyToOne]
  50.     private ?Etat $etat null;
  51.     #[ORM\Column(length255nullabletrue)]
  52.     private ?string $civilite null;
  53.     #[ORM\Column(length255nullabletrue)]
  54.     private ?string $num_voie null;
  55.     #[ORM\Column(length255nullabletrue)]
  56.     private ?string $type_voie null;
  57.     #[ORM\Column(length255nullabletrue)]
  58.     private ?string $nom_voie null;
  59.     #[ORM\ManyToOne]
  60.     private ?Langue $langue null;
  61.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  62.     private ?\DateTimeInterface $date_naissance null;
  63.     
  64.     #[ORM\ManyToOne]
  65.     private ?Departement $departement null;
  66.     #[ORM\Column(length255nullabletrue)]
  67.     private ?string $code_pays_dep null;
  68.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  69.     private ?\DateTimeInterface $date_acceptation null;
  70.     #[ORM\Column(length255nullabletrue)]
  71.     private ?string $pseudo null;
  72.     public function getId(): ?int
  73.     {
  74.         return $this->id;
  75.     }
  76.     public function getNom(): ?string
  77.     {
  78.         return $this->nom;
  79.     }
  80.     public function setNom(string $nom): self
  81.     {
  82.         $this->nom $nom;
  83.         return $this;
  84.     }
  85.     public function getPrenom(): ?string
  86.     {
  87.         return $this->prenom;
  88.     }
  89.     public function setPrenom(string $prenom): self
  90.     {
  91.         $this->prenom $prenom;
  92.         return $this;
  93.     }
  94.     public function getTelephone(): ?string
  95.     {
  96.         return $this->telephone;
  97.     }
  98.     public function setTelephone(string $telephone): self
  99.     {
  100.         $this->telephone $telephone;
  101.         return $this;
  102.     }
  103.     public function getPortable(): ?string
  104.     {
  105.         return $this->portable;
  106.     }
  107.     public function setPortable(?string $portable): self
  108.     {
  109.         $this->portable $portable;
  110.         return $this;
  111.     }
  112.     public function getVille(): ?string
  113.     {
  114.         return $this->ville;
  115.     }
  116.     public function setVille(string $ville): self
  117.     {
  118.         $this->ville $ville;
  119.         return $this;
  120.     }
  121.     public function getPays(): ?Pays
  122.     {
  123.         return $this->pays;
  124.     }
  125.     public function setPays(?Pays $pays): self
  126.     {
  127.         $this->pays $pays;
  128.         return $this;
  129.     }
  130.     public function getAdress(): ?string
  131.     {
  132.         return $this->adress;
  133.     }
  134.     public function setAdress(string $adress): self
  135.     {
  136.         $this->adress $adress;
  137.         return $this;
  138.     }
  139.     public function getCodePostal(): ?string
  140.     {
  141.         return $this->codePostal;
  142.     }
  143.     public function setCodePostal(string $codePostal): self
  144.     {
  145.         $this->codePostal $codePostal;
  146.         return $this;
  147.     }
  148.     public function getEtatId(): ?int
  149.     {
  150.         return $this->etatId;
  151.     }
  152.     public function setEtatId(int $etatId): self
  153.     {
  154.         $this->etatId $etatId;
  155.         return $this;
  156.     }
  157.     public function getProfessionalId(): ?int
  158.     {
  159.         return $this->professionalId;
  160.     }
  161.     public function setProfessionalId(int $professionalId): self
  162.     {
  163.         $this->professionalId $professionalId;
  164.         return $this;
  165.     }
  166.     public function isAgent(): ?bool
  167.     {
  168.         return $this->agent;
  169.     }
  170.     public function setAgent(bool $agent): self
  171.     {
  172.         $this->agent $agent;
  173.         return $this;
  174.     }
  175.     public function getDateCreation(): ?\DateTimeInterface
  176.     {
  177.         return $this->dateCreation;
  178.     }
  179.     public function setDateCreation(\DateTimeInterface $dateCreation): self
  180.     {
  181.         $this->dateCreation $dateCreation;
  182.         return $this;
  183.     }
  184.     public function getDateUpdate(): ?\DateTimeInterface
  185.     {
  186.         return $this->dateUpdate;
  187.     }
  188.     public function setDateUpdate(\DateTimeInterface $dateUpdate): self
  189.     {
  190.         $this->dateUpdate $dateUpdate;
  191.         return $this;
  192.     }
  193.   
  194.     public function getUser(): ?User
  195.     {
  196.         return $this->user;
  197.     }
  198.     public function setUser(?User $user): static
  199.     {
  200.         $this->user $user;
  201.         return $this;
  202.     }
  203.     public function getEmail(): ?string
  204.     {
  205.         return $this->email;
  206.     }
  207.     public function setEmail(?string $email): static
  208.     {
  209.         $this->email $email;
  210.         return $this;
  211.     }
  212.     public function getPassword(): ?string
  213.     {
  214.         return $this->password;
  215.     }
  216.     public function setPassword(?string $password): static
  217.     {
  218.         $this->password $password;
  219.         return $this;
  220.     }
  221.     public function getEtat(): ?Etat
  222.     {
  223.         return $this->etat;
  224.     }
  225.     public function setEtat(?Etat $etat): static
  226.     {
  227.         $this->etat $etat;
  228.         return $this;
  229.     }
  230.   
  231.     public function getCivilite(): ?string
  232.     {
  233.         return $this->civilite;
  234.     }
  235.     public function setCivilite(?string $civilite): static
  236.     {
  237.         $this->civilite $civilite;
  238.         return $this;
  239.     }
  240.     public function getNumVoie(): ?string
  241.     {
  242.         return $this->num_voie;
  243.     }
  244.     public function setNumVoie(?string $num_voie): static
  245.     {
  246.         $this->num_voie $num_voie;
  247.         return $this;
  248.     }
  249.     public function getTypeVoie(): ?string
  250.     {
  251.         return $this->type_voie;
  252.     }
  253.     public function setTypeVoie(?string $type_voie): static
  254.     {
  255.         $this->type_voie $type_voie;
  256.         return $this;
  257.     }
  258.     public function getNomVoie(): ?string
  259.     {
  260.         return $this->nom_voie;
  261.     }
  262.     public function setNomVoie(?string $nom_voie): static
  263.     {
  264.         $this->nom_voie $nom_voie;
  265.         return $this;
  266.     }
  267.     public function getLangue(): ?Langue
  268.     {
  269.         return $this->langue;
  270.     }
  271.     public function setLangue(?Langue $langue): static
  272.     {
  273.         $this->langue $langue;
  274.         return $this;
  275.     }
  276.     public function getDateNaissance(): ?\DateTimeInterface
  277.     {
  278.         return $this->date_naissance;
  279.     }
  280.     public function setDateNaissance(?\DateTimeInterface $date_naissance): static
  281.     {
  282.         $this->date_naissance $date_naissance;
  283.         return $this;
  284.     }
  285.     public function getDepartement(): ?Departement
  286.     {
  287.         return $this->departement;
  288.     }
  289.     public function setDepartement(?Departement $departement): static
  290.     {
  291.         $this->departement $departement;
  292.         return $this;
  293.     }
  294.     public function getCodePaysDep(): ?string
  295.     {
  296.         return $this->code_pays_dep;
  297.     }
  298.     public function setCodePaysDep(?string $code_pays_dep): static
  299.     {
  300.         $this->code_pays_dep $code_pays_dep;
  301.         return $this;
  302.     }
  303.     public function getDateAcceptation(): ?\DateTimeInterface
  304.     {
  305.         return $this->date_acceptation;
  306.     }
  307.     public function setDateAcceptation(?\DateTimeInterface $date_acceptation): static
  308.     {
  309.         $this->date_acceptation $date_acceptation;
  310.         return $this;
  311.     }
  312.     public function getPseudo(): ?string
  313.     {
  314.         return $this->pseudo;
  315.     }
  316.     public function setPseudo(?string $pseudo): static
  317.     {
  318.         $this->pseudo $pseudo;
  319.         return $this;
  320.     }
  321. }