src/Entity/Entreprise.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EntrepriseRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use Doctrine\Common\Collections\ArrayCollection;
  7. #[ORM\Entity(repositoryClassEntrepriseRepository::class)]
  8. class Entreprise
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private int $id;
  14.     #[ORM\Column(type'string'length255)]
  15.     private string $adresse;
  16.     #[ORM\Column(type'string'length255)]
  17.     private string $siren;
  18.     #[ORM\Column(type'string'length255)]
  19.     private string $ape;
  20.     #[ORM\Column(type'string'length255)]
  21.     private string $taille;
  22.     #[ORM\ManyToOne]
  23.     private ?Departement $departement null;
  24.     #[ORM\ManyToOne]
  25.     private ?Etat $etat null;
  26.     #[ORM\Column(type'string'length255)]
  27.     private string $nom_entreprise;
  28.     #[ORM\Column(type'string'length255nullabletrue)]
  29.     private string $dir;
  30.     #[ORM\Column(type'string'length255nullabletrue)]
  31.     private ?string $image;
  32.     #[ORM\Column(type'text'nullabletrue)]
  33.     private ?string $description;
  34.     #[ORM\ManyToOne]
  35.     private ?Niveau $niveau;
  36.     #[ORM\ManyToOne]
  37.     private ?GestionnaireEntreprise $gestionnaire_entreprise null;
  38.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  39.     private ?\DateTimeInterface $date_creation_compte null;
  40.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  41.     private ?\DateTimeInterface $date_update null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $code_postal null;
  44.     #[ORM\Column(length255nullabletrue)]
  45.     private ?string $num_voie null;
  46.     #[ORM\Column(length255nullabletrue)]
  47.     private ?string $type_voie null;
  48.     #[ORM\Column(length255nullabletrue)]
  49.     private ?string $nom_voie null;
  50.     #[ORM\ManyToOne]
  51.     private ?Pays $Pays null;
  52.     #[ORM\Column(length255)]
  53.     private $ville;
  54.     #[ORM\Column(type'boolean'nullabletrueoptions: ["default" => false])]
  55.     private bool $accordConsultation;
  56.     #[ORM\Column(type'boolean'nullabletrueoptions: ["default" => false])]
  57.     private bool $documentApres;
  58.     #[ORM\Column(length255nullabletrue)]
  59.     private ?string $code_pays_dep null;
  60.     #[ORM\ManyToOne]
  61.     private ?Formules $formule null;
  62.     #[ORM\Column(length255nullabletrue)]
  63.     private ?string $prix_formule_ttc null;
  64.     #[ORM\Column(length255nullabletrue)]
  65.     private ?string $prix_formule_ht null;
  66.     #[ORM\Column(length255nullabletrue)]
  67.     private ?string $tva_formule null;
  68.     #[ORM\Column(length255nullabletrue)]
  69.     private ?string $telephone null;
  70.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  71.     private ?\DateTimeInterface $date_creation_entreprise null;
  72.     #[ORM\Column(length255nullabletrue)]
  73.     private ?string $portable null;
  74.     #[ORM\Column(length255nullabletrue)]
  75.     private ?string $site null;
  76.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  77.     private ?array $services null;
  78.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  79.     private ?array $moyens_communication null;
  80.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  81.     private ?array $social_links null;
  82.     #[ORM\Column(length255nullabletrue)]
  83.     private ?string $email null;
  84.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  85.     private ?\DateTimeInterface $dernier_update_departement null;
  86.     #[ORM\Column(type'boolean'nullabletrueoptions: ["default" => false])]
  87.     private bool $agentRequireEmail;
  88.     #[ORM\Column(type'boolean'nullabletrueoptions: ["default" => false])]
  89.     private bool $agentUniqueEmail;
  90.     #[ORM\Column(type'boolean'nullabletrueoptions: ["default" => false])]
  91.     private bool $searchAgentLimitToTop;
  92.     #[ORM\ManyToOne]
  93.     private ?Entreprise $entrepriseRacine null;
  94.     #[ORM\ManyToOne]
  95.     private ?Entreprise $entrepriseParent null;
  96.     #[ORM\Column(typeTypes::ARRAY, nullabletrue)]
  97.     private ?array $langues null;
  98.     #[ORM\Column(length255nullabletrue)]
  99.     private ?string $geo null;
  100.     
  101.     public function __construct()
  102.     {
  103.         $this->gestionnaires = new ArrayCollection();
  104.     }
  105.     public function getId(): ?int
  106.     {
  107.         return $this->id;
  108.     }
  109.     public function getAdresse(): ?string
  110.     {
  111.         return $this->adresse;
  112.     }
  113.     public function setAdresse(string $adresse): self
  114.     {
  115.         $this->adresse $adresse;
  116.         return $this;
  117.     }
  118.     public function getSiren(): ?string
  119.     {
  120.         return $this->siren;
  121.     }
  122.     public function setSiren(string $siren): self
  123.     {
  124.         $this->siren $siren;
  125.         return $this;
  126.     }
  127.     public function getApe(): ?string
  128.     {
  129.         return $this->ape;
  130.     }
  131.     public function setApe(string $ape): self
  132.     {
  133.         $this->ape $ape;
  134.         return $this;
  135.     }
  136.     public function getTaille(): ?string
  137.     {
  138.         return $this->taille;
  139.     }
  140.     public function setTaille(string $taille): self
  141.     {
  142.         $this->taille $taille;
  143.         return $this;
  144.     }
  145.     public function getEtat(): ?Etat
  146.     {
  147.         return $this->etat;
  148.     }
  149.     public function setEtat(?Etat $etat): static
  150.     {
  151.         $this->etat $etat;
  152.         return $this;
  153.     }
  154.    
  155.     public function getGestionnaireEntreprise(): ?GestionnaireEntreprise
  156.     {
  157.         return $this->gestionnaire_entreprise;
  158.     }
  159.     public function setGestionnaireEntreprise(?GestionnaireEntreprise $gestionnaire_entreprise): static
  160.     {
  161.         $this->gestionnaire_entreprise $gestionnaire_entreprise;
  162.         return $this;
  163.     }
  164.     public function getNiveau(): ?Niveau
  165.     {
  166.         return $this->niveau;
  167.     }
  168.     public function setNiveau(?Niveau $niveau): self
  169.     {
  170.         $this->niveau $niveau;
  171.         return $this;
  172.     }
  173.     public function getNomEntreprise(): ?string
  174.     {
  175.         return $this->nom_entreprise;
  176.     }
  177.     public function setNomEntreprise(string $nom_entreprise): self
  178.     {
  179.         $this->nom_entreprise $nom_entreprise;
  180.         return $this;
  181.     }
  182.     public function getDir(): ?string
  183.     {
  184.         return $this->dir;
  185.     }
  186.     public function setDir(string $dir): self
  187.     {
  188.         $this->dir $dir;
  189.         return $this;
  190.     }
  191.     public function getImage(): ?string
  192.     {
  193.         return $this->image;
  194.     }
  195.     public function setImage(?string $image): self
  196.     {
  197.         $this->image $image;
  198.         return $this;
  199.     }
  200.     public function getDescription(): ?string
  201.     {
  202.         return $this->description;
  203.     }
  204.     public function setDescription(?string $description): self
  205.     {
  206.         $this->description $description;
  207.         return $this;
  208.     }
  209.     public function getDateCreationCompte(): ?\DateTimeInterface
  210.     {
  211.         return $this->date_creation_compte;
  212.     }
  213.     public function setDateCreationCompte(?\DateTimeInterface $date_creation): static
  214.     {
  215.         $this->date_creation_compte $date_creation;
  216.         return $this;
  217.     }
  218.     public function getDateUpdate(): ?\DateTimeInterface
  219.     {
  220.         return $this->date_update;
  221.     }
  222.     public function setDateUpdate(?\DateTimeInterface $date_update): static
  223.     {
  224.         $this->date_update $date_update;
  225.         return $this;
  226.     }
  227.     public function getCodePostal(): ?string
  228.     {
  229.         return $this->code_postal;
  230.     }
  231.     public function setCodePostal(?string $code_postal): static
  232.     {
  233.         $this->code_postal $code_postal;
  234.         return $this;
  235.     }
  236.     public function getNumVoie(): ?string
  237.     {
  238.         return $this->num_voie;
  239.     }
  240.     public function setNumVoie(?string $num_voie): static
  241.     {
  242.         $this->num_voie $num_voie;
  243.         return $this;
  244.     }
  245.     public function getTypeVoie(): ?string
  246.     {
  247.         return $this->type_voie;
  248.     }
  249.     public function setTypeVoie(?string $type_voie): static
  250.     {
  251.         $this->type_voie $type_voie;
  252.         return $this;
  253.     }
  254.     public function getNomVoie(): ?string
  255.     {
  256.         return $this->nom_voie;
  257.     }
  258.     public function setNomVoie(?string $nom_voie): static
  259.     {
  260.         $this->nom_voie $nom_voie;
  261.         return $this;
  262.     }
  263.     public function getDepartement(): ?Departement
  264.     {
  265.         return $this->departement;
  266.     }
  267.     public function setDepartement(?Departement $departement): static
  268.     {
  269.         $this->departement $departement;
  270.         return $this;
  271.     }
  272.     public function getPays(): ?Pays
  273.     {
  274.         return $this->Pays;
  275.     }
  276.     public function setPays(?Pays $Pays): static
  277.     {
  278.         $this->Pays $Pays;
  279.         return $this;
  280.     }
  281.     public function getVille(): ?string
  282.     {
  283.         return $this->ville;
  284.     }
  285.     public function setVille(string $ville): self
  286.     {
  287.         $this->ville $ville;
  288.         return $this;
  289.     }
  290.     public function getAccordConsultation(): ?bool
  291.     {
  292.         return $this->accordConsultation;
  293.     }
  294.     public function setAccordConsultation(bool $accordConsultation): self
  295.     {
  296.         $this->accordConsultation $accordConsultation;
  297.         return $this;
  298.     }
  299.  
  300.     public function getDocumentApres(): ?bool
  301.     {
  302.         return $this->documentApres;
  303.     }
  304.     public function setDocumentApres(bool $documentApres): self
  305.     {
  306.         $this->documentApres $documentApres;
  307.         return $this;
  308.     }
  309.     public function getCodePaysDep(): ?string
  310.     {
  311.         return $this->code_pays_dep;
  312.     }
  313.     public function setCodePaysDep(?string $code_pays_dep): static
  314.     {
  315.         $this->code_pays_dep $code_pays_dep;
  316.         return $this;
  317.     }
  318.     public function getFormule(): ?Formules
  319.     {
  320.         return $this->formule;
  321.     }
  322.     public function setFormule(?Formules $formule): static
  323.     {
  324.         $this->formule $formule;
  325.         return $this;
  326.     }
  327.     public function getPrixFormuleTtc(): ?string
  328.     {
  329.         return $this->prix_formule_ttc;
  330.     }
  331.     public function setPrixFormuleTtc(?string $prix_formule_ttc): static
  332.     {
  333.         $this->prix_formule_ttc $prix_formule_ttc;
  334.         return $this;
  335.     }
  336.     public function getPrixFormuleHt(): ?string
  337.     {
  338.         return $this->prix_formule_ht;
  339.     }
  340.     public function setPrixFormuleHt(?string $prix_formule_ht): static
  341.     {
  342.         $this->prix_formule_ht $prix_formule_ht;
  343.         return $this;
  344.     }
  345.     public function getTvaFormule(): ?string
  346.     {
  347.         return $this->tva_formule;
  348.     }
  349.     public function setTvaFormule(?string $tva_formule): static
  350.     {
  351.         $this->tva_formule $tva_formule;
  352.         return $this;
  353.     }
  354.     public function getTelephone(): ?string
  355.     {
  356.         return $this->telephone;
  357.     }
  358.     public function setTelephone(?string $telephone): static
  359.     {
  360.         $this->telephone $telephone;
  361.         return $this;
  362.     }
  363.     public function getDateCreationEntreprise(): ?\DateTimeInterface
  364.     {
  365.         return $this->date_creation_entreprise;
  366.     }
  367.     public function setDateCreationEntreprise(?\DateTimeInterface $date_creation_entreprise): static
  368.     {
  369.         $this->date_creation_entreprise $date_creation_entreprise;
  370.         return $this;
  371.     }
  372.     public function getPortable(): ?string
  373.     {
  374.         return $this->portable;
  375.     }
  376.     public function setPortable(?string $portable): static
  377.     {
  378.         $this->portable $portable;
  379.         return $this;
  380.     }
  381.     public function getSite(): ?string
  382.     {
  383.         return $this->site;
  384.     }
  385.     public function setSite(?string $site): static
  386.     {
  387.         $this->site $site;
  388.         return $this;
  389.     }
  390.     public function getServices(): ?array
  391.     {
  392.         return $this->services;
  393.     }
  394.     public function setServices(?array $services): static
  395.     {
  396.         $this->services $services;
  397.         return $this;
  398.     }
  399.     public function getMoyensCommunication(): ?array
  400.     {
  401.         return $this->moyens_communication;
  402.     }
  403.     public function setMoyensCommunication(?array $moyens_communication): static
  404.     {
  405.         $this->moyens_communication $moyens_communication;
  406.         return $this;
  407.     }
  408.     public function getSocialLinks(): ?array
  409.     {
  410.         return $this->social_links;
  411.     }
  412.     public function setSocialLinks(?array $social_links): static
  413.     {
  414.         $this->social_links $social_links;
  415.         return $this;
  416.     }
  417.     public function getEmail(): ?string
  418.     {
  419.         return $this->email;
  420.     }
  421.     public function setEmail(?string $email): static
  422.     {
  423.         $this->email $email;
  424.         return $this;
  425.     }
  426.     public function getDernierUpdateDepartement(): ?\DateTimeInterface
  427.     {
  428.         return $this->dernier_update_departement;
  429.     }
  430.     public function setDernierUpdateDepartement(?\DateTimeInterface $dernier_update_departement): static
  431.     {
  432.         $this->dernier_update_departement $dernier_update_departement;
  433.         return $this;
  434.     }
  435.     public function getSearchAgentLimitToTop(): ?bool
  436.     {
  437.         return $this->searchAgentLimitToTop;
  438.     }
  439.     public function setSearchAgentLimitToTop(bool $searchAgentLimitToTop): self
  440.     {
  441.         $this->searchAgentLimitToTop $searchAgentLimitToTop;
  442.         return $this;
  443.     }
  444.     public function getAgentRequireEmail(): ?bool
  445.     {
  446.         return $this->agentRequireEmail;
  447.     }
  448.     public function setAgentRequireEmail(bool $agentRequireEmail): self
  449.     {
  450.         $this->agentRequireEmail $agentRequireEmail;
  451.         return $this;
  452.     }
  453.     public function getAgentUniqueEmail(): ?bool
  454.     {
  455.         return $this->agentUniqueEmail;
  456.     }
  457.     public function setAgentUniqueEmail(bool $agentUniqueEmail): self
  458.     {
  459.         $this->agentUniqueEmail $agentUniqueEmail;
  460.         return $this;
  461.     }
  462.     public function getEntrepriseRacine(): ?Entreprise
  463.     {
  464.         return $this->entrepriseRacine;
  465.     }
  466.     public function setEntrepriseRacine(?Entreprise $entrepriseRacine): static
  467.     {
  468.         $this->entrepriseRacine $entrepriseRacine;
  469.         return $this;
  470.     }
  471.     public function getEntrepriseParent(): ?Entreprise
  472.     {
  473.         return $this->entrepriseParent;
  474.     }
  475.     public function setEntrepriseParent(?Entreprise $entrepriseParent): static
  476.     {
  477.         $this->entrepriseParent $entrepriseParent;
  478.         return $this;
  479.     }
  480.     public function getLangues(): ?array
  481.     {
  482.         return $this->langues;
  483.     }
  484.     public function setLangues(?array $langues): static
  485.     {
  486.         $this->langues $langues;
  487.         return $this;
  488.     }
  489.     public function getGeo(): ?string
  490.     {
  491.         return $this->geo;
  492.     }
  493.     public function setGeo(?string $geo): static
  494.     {
  495.         $this->geo $geo;
  496.         return $this;
  497.     }
  498. }
  499.