<?php
namespace App\Entity;
use App\Repository\EntrepriseRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Doctrine\Common\Collections\ArrayCollection;
#[ORM\Entity(repositoryClass: EntrepriseRepository::class)]
class Entreprise
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private int $id;
#[ORM\Column(type: 'string', length: 255)]
private string $adresse;
#[ORM\Column(type: 'string', length: 255)]
private string $siren;
#[ORM\Column(type: 'string', length: 255)]
private string $ape;
#[ORM\Column(type: 'string', length: 255)]
private string $taille;
#[ORM\ManyToOne]
private ?Departement $departement = null;
#[ORM\ManyToOne]
private ?Etat $etat = null;
#[ORM\Column(type: 'string', length: 255)]
private string $nom_entreprise;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private string $dir;
#[ORM\Column(type: 'string', length: 255, nullable: true)]
private ?string $image;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $description;
#[ORM\ManyToOne]
private ?Niveau $niveau;
#[ORM\ManyToOne]
private ?GestionnaireEntreprise $gestionnaire_entreprise = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_creation_compte = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_update = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $code_postal = 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 ?Pays $Pays = null;
#[ORM\Column(length: 255)]
private $ville;
#[ORM\Column(type: 'boolean', nullable: true, options: ["default" => false])]
private bool $accordConsultation;
#[ORM\Column(type: 'boolean', nullable: true, options: ["default" => false])]
private bool $documentApres;
#[ORM\Column(length: 255, nullable: true)]
private ?string $code_pays_dep = null;
#[ORM\ManyToOne]
private ?Formules $formule = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $prix_formule_ttc = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $prix_formule_ht = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $tva_formule = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $telephone = null;
#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]
private ?\DateTimeInterface $date_creation_entreprise = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $portable = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $site = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $services = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $moyens_communication = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $social_links = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $email = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]
private ?\DateTimeInterface $dernier_update_departement = null;
#[ORM\Column(type: 'boolean', nullable: true, options: ["default" => false])]
private bool $agentRequireEmail;
#[ORM\Column(type: 'boolean', nullable: true, options: ["default" => false])]
private bool $agentUniqueEmail;
#[ORM\Column(type: 'boolean', nullable: true, options: ["default" => false])]
private bool $searchAgentLimitToTop;
#[ORM\ManyToOne]
private ?Entreprise $entrepriseRacine = null;
#[ORM\ManyToOne]
private ?Entreprise $entrepriseParent = null;
#[ORM\Column(type: Types::ARRAY, nullable: true)]
private ?array $langues = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $geo = null;
public function __construct()
{
$this->gestionnaires = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getAdresse(): ?string
{
return $this->adresse;
}
public function setAdresse(string $adresse): self
{
$this->adresse = $adresse;
return $this;
}
public function getSiren(): ?string
{
return $this->siren;
}
public function setSiren(string $siren): self
{
$this->siren = $siren;
return $this;
}
public function getApe(): ?string
{
return $this->ape;
}
public function setApe(string $ape): self
{
$this->ape = $ape;
return $this;
}
public function getTaille(): ?string
{
return $this->taille;
}
public function setTaille(string $taille): self
{
$this->taille = $taille;
return $this;
}
public function getEtat(): ?Etat
{
return $this->etat;
}
public function setEtat(?Etat $etat): static
{
$this->etat = $etat;
return $this;
}
public function getGestionnaireEntreprise(): ?GestionnaireEntreprise
{
return $this->gestionnaire_entreprise;
}
public function setGestionnaireEntreprise(?GestionnaireEntreprise $gestionnaire_entreprise): static
{
$this->gestionnaire_entreprise = $gestionnaire_entreprise;
return $this;
}
public function getNiveau(): ?Niveau
{
return $this->niveau;
}
public function setNiveau(?Niveau $niveau): self
{
$this->niveau = $niveau;
return $this;
}
public function getNomEntreprise(): ?string
{
return $this->nom_entreprise;
}
public function setNomEntreprise(string $nom_entreprise): self
{
$this->nom_entreprise = $nom_entreprise;
return $this;
}
public function getDir(): ?string
{
return $this->dir;
}
public function setDir(string $dir): self
{
$this->dir = $dir;
return $this;
}
public function getImage(): ?string
{
return $this->image;
}
public function setImage(?string $image): self
{
$this->image = $image;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(?string $description): self
{
$this->description = $description;
return $this;
}
public function getDateCreationCompte(): ?\DateTimeInterface
{
return $this->date_creation_compte;
}
public function setDateCreationCompte(?\DateTimeInterface $date_creation): static
{
$this->date_creation_compte = $date_creation;
return $this;
}
public function getDateUpdate(): ?\DateTimeInterface
{
return $this->date_update;
}
public function setDateUpdate(?\DateTimeInterface $date_update): static
{
$this->date_update = $date_update;
return $this;
}
public function getCodePostal(): ?string
{
return $this->code_postal;
}
public function setCodePostal(?string $code_postal): static
{
$this->code_postal = $code_postal;
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 getDepartement(): ?Departement
{
return $this->departement;
}
public function setDepartement(?Departement $departement): static
{
$this->departement = $departement;
return $this;
}
public function getPays(): ?Pays
{
return $this->Pays;
}
public function setPays(?Pays $Pays): static
{
$this->Pays = $Pays;
return $this;
}
public function getVille(): ?string
{
return $this->ville;
}
public function setVille(string $ville): self
{
$this->ville = $ville;
return $this;
}
public function getAccordConsultation(): ?bool
{
return $this->accordConsultation;
}
public function setAccordConsultation(bool $accordConsultation): self
{
$this->accordConsultation = $accordConsultation;
return $this;
}
public function getDocumentApres(): ?bool
{
return $this->documentApres;
}
public function setDocumentApres(bool $documentApres): self
{
$this->documentApres = $documentApres;
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 getFormule(): ?Formules
{
return $this->formule;
}
public function setFormule(?Formules $formule): static
{
$this->formule = $formule;
return $this;
}
public function getPrixFormuleTtc(): ?string
{
return $this->prix_formule_ttc;
}
public function setPrixFormuleTtc(?string $prix_formule_ttc): static
{
$this->prix_formule_ttc = $prix_formule_ttc;
return $this;
}
public function getPrixFormuleHt(): ?string
{
return $this->prix_formule_ht;
}
public function setPrixFormuleHt(?string $prix_formule_ht): static
{
$this->prix_formule_ht = $prix_formule_ht;
return $this;
}
public function getTvaFormule(): ?string
{
return $this->tva_formule;
}
public function setTvaFormule(?string $tva_formule): static
{
$this->tva_formule = $tva_formule;
return $this;
}
public function getTelephone(): ?string
{
return $this->telephone;
}
public function setTelephone(?string $telephone): static
{
$this->telephone = $telephone;
return $this;
}
public function getDateCreationEntreprise(): ?\DateTimeInterface
{
return $this->date_creation_entreprise;
}
public function setDateCreationEntreprise(?\DateTimeInterface $date_creation_entreprise): static
{
$this->date_creation_entreprise = $date_creation_entreprise;
return $this;
}
public function getPortable(): ?string
{
return $this->portable;
}
public function setPortable(?string $portable): static
{
$this->portable = $portable;
return $this;
}
public function getSite(): ?string
{
return $this->site;
}
public function setSite(?string $site): static
{
$this->site = $site;
return $this;
}
public function getServices(): ?array
{
return $this->services;
}
public function setServices(?array $services): static
{
$this->services = $services;
return $this;
}
public function getMoyensCommunication(): ?array
{
return $this->moyens_communication;
}
public function setMoyensCommunication(?array $moyens_communication): static
{
$this->moyens_communication = $moyens_communication;
return $this;
}
public function getSocialLinks(): ?array
{
return $this->social_links;
}
public function setSocialLinks(?array $social_links): static
{
$this->social_links = $social_links;
return $this;
}
public function getEmail(): ?string
{
return $this->email;
}
public function setEmail(?string $email): static
{
$this->email = $email;
return $this;
}
public function getDernierUpdateDepartement(): ?\DateTimeInterface
{
return $this->dernier_update_departement;
}
public function setDernierUpdateDepartement(?\DateTimeInterface $dernier_update_departement): static
{
$this->dernier_update_departement = $dernier_update_departement;
return $this;
}
public function getSearchAgentLimitToTop(): ?bool
{
return $this->searchAgentLimitToTop;
}
public function setSearchAgentLimitToTop(bool $searchAgentLimitToTop): self
{
$this->searchAgentLimitToTop = $searchAgentLimitToTop;
return $this;
}
public function getAgentRequireEmail(): ?bool
{
return $this->agentRequireEmail;
}
public function setAgentRequireEmail(bool $agentRequireEmail): self
{
$this->agentRequireEmail = $agentRequireEmail;
return $this;
}
public function getAgentUniqueEmail(): ?bool
{
return $this->agentUniqueEmail;
}
public function setAgentUniqueEmail(bool $agentUniqueEmail): self
{
$this->agentUniqueEmail = $agentUniqueEmail;
return $this;
}
public function getEntrepriseRacine(): ?Entreprise
{
return $this->entrepriseRacine;
}
public function setEntrepriseRacine(?Entreprise $entrepriseRacine): static
{
$this->entrepriseRacine = $entrepriseRacine;
return $this;
}
public function getEntrepriseParent(): ?Entreprise
{
return $this->entrepriseParent;
}
public function setEntrepriseParent(?Entreprise $entrepriseParent): static
{
$this->entrepriseParent = $entrepriseParent;
return $this;
}
public function getLangues(): ?array
{
return $this->langues;
}
public function setLangues(?array $langues): static
{
$this->langues = $langues;
return $this;
}
public function getGeo(): ?string
{
return $this->geo;
}
public function setGeo(?string $geo): static
{
$this->geo = $geo;
return $this;
}
}