src/Entity/Restaurant.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Ogresto.restaurant
  6.  *@
  7.  * @ORM\Table(name="ogresto.restaurant")
  8.  * @ORM\Entity(repositoryClass=App\Repository\RestaurantRepository::class)
  9.  */
  10. class Restaurant
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer", nullable=false)
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="SEQUENCE")
  18.      * @ORM\SequenceGenerator(sequenceName="ogresto.restaurant_id_seq", allocationSize=1, initialValue=1)
  19.      */
  20.     private $id;
  21.     /**
  22.      * @var string|null
  23.      *
  24.      * @ORM\Column(name="activite", type="string", nullable=true)
  25.      */
  26.     private $activite;
  27.     /**
  28.      * @var string|null
  29.      *
  30.      * @ORM\Column(name="ambiance", type="string", nullable=true)
  31.      */
  32.     private $ambiance;
  33.     /**
  34.      * @var string|null
  35.      *
  36.      * @ORM\Column(name="budget", type="string", nullable=true)
  37.      */
  38.     private $budget;
  39.     /**
  40.      * @var string|null
  41.      *
  42.      * @ORM\Column(name="cle_adr_complete", type="string", nullable=true)
  43.      */
  44.     private $cleAdrComplete;
  45.     /**
  46.      * @var string|null
  47.      *
  48.      * @ORM\Column(name="cle_adr_pcomp", type="string", nullable=true)
  49.      */
  50.     private $cleAdrPcomp;
  51.     /**
  52.      * @var string|null
  53.      *
  54.      * @ORM\Column(name="cle_adr_pcomp2", type="string", nullable=true)
  55.      */
  56.     private $cleAdrPcomp2;
  57.     /**
  58.      * @var string|null
  59.      *
  60.      * @ORM\Column(name="cle_comp_ss_num", type="string", nullable=true)
  61.      */
  62.     private $cleCompSsNum;
  63.     /**
  64.      * @var string|null
  65.      *
  66.      * @ORM\Column(name="cle_complete", type="string", nullable=true)
  67.      */
  68.     private $cleComplete;
  69.     /**
  70.      * @var string|null
  71.      *
  72.      * @ORM\Column(name="cle_pcompl", type="string", nullable=true)
  73.      */
  74.     private $clePcompl;
  75.     /**
  76.      * @var string|null
  77.      *
  78.      * @ORM\Column(name="cle_pcompl2", type="string", nullable=true)
  79.      */
  80.     private $clePcompl2;
  81.     /**
  82.      * @var string|null
  83.      *
  84.      * @ORM\Column(name="cle_pcompl2_ss_num", type="string", nullable=true)
  85.      */
  86.     private $clePcompl2SsNum;
  87.     /**
  88.      * @var string|null
  89.      *
  90.      * @ORM\Column(name="cle_pcompl_ss_num", type="string", nullable=true)
  91.      */
  92.     private $clePcomplSsNum;
  93.     /**
  94.      * @var string|null
  95.      *
  96.      * @ORM\Column(name="codens", type="string", nullable=true)
  97.      */
  98.     private $codens;
  99.     /**
  100.      * @var string|null
  101.      *
  102.      * @ORM\Column(name="codinsee", type="string", nullable=true)
  103.      */
  104.     private $codinsee;
  105.     /**
  106.      * @var string|null
  107.      *
  108.      * @ORM\Column(name="codpost", type="string", nullable=true)
  109.      */
  110.     private $codpost;
  111.     /**
  112.      * @var string|null
  113.      *
  114.      * @ORM\Column(name="com_vali", type="string", nullable=true)
  115.      */
  116.     private $comVali;
  117.     /**
  118.      * @var string|null
  119.      *
  120.      * @ORM\Column(name="commune", type="string", nullable=true)
  121.      */
  122.     private $commune;
  123.     /**
  124.      * @var string|null
  125.      *
  126.      * @ORM\Column(name="compvoie", type="string", nullable=true)
  127.      */
  128.     private $compvoie;
  129.     /**
  130.      * @var string|null
  131.      *
  132.      * @ORM\Column(name="couleur_fin", type="string", nullable=true)
  133.      */
  134.     private $couleurFin;
  135.     /**
  136.      * @var string|null
  137.      *
  138.      * @ORM\Column(name="couleur_valid", type="string", nullable=true)
  139.      */
  140.     private $couleurValid;
  141.     /**
  142.      * @var string|null
  143.      *
  144.      * @ORM\Column(name="datecreationetablissement", type="string", nullable=true)
  145.      */
  146.     private $datecreationetablissement;
  147.     /**
  148.      * @var string|null
  149.      *
  150.      * @ORM\Column(name="datedebut", type="string", nullable=true)
  151.      */
  152.     private $datedebut;
  153.     /**
  154.      * @var string|null
  155.      *
  156.      * @ORM\Column(name="datederniertraitementetablisseme", type="string", nullable=true)
  157.      */
  158.     private $datederniertraitementetablisseme;
  159.     /**
  160.      * @var string|null
  161.      *
  162.      * @ORM\Column(name="denomination_f", type="string", nullable=true)
  163.      */
  164.     private $denominationF;
  165.     /**
  166.      * @var string|null
  167.      *
  168.      * @ORM\Column(name="fonctionalite", type="string", nullable=true)
  169.      */
  170.     private $fonctionalite;
  171.     /**
  172.      * @var string|null
  173.      *
  174.      * @ORM\Column(name="fourchette_prix", type="string", nullable=true)
  175.      */
  176.     private $fourchettePrix;
  177.     /**
  178.      * @var string|null
  179.      *
  180.      * @ORM\Column(name="horaires", type="string", nullable=true)
  181.      */
  182.     private $horaires;
  183.     /**
  184.      * @var string|null
  185.      *
  186.      * @ORM\Column(name="id_pj", type="string", nullable=true)
  187.      */
  188.     private $idPj;
  189.     /**
  190.      * @var string|null
  191.      *
  192.      * @ORM\Column(name="id_stock", type="string", nullable=true)
  193.      */
  194.     private $idStock;
  195.     /**
  196.      * @var string|null
  197.      *
  198.      * @ORM\Column(name="id_ta", type="string", nullable=true)
  199.      */
  200.     private $idTa;
  201.     /**
  202.      * @var string|null
  203.      *
  204.      * @ORM\Column(name="nomvoie", type="string", nullable=true)
  205.      */
  206.     private $nomvoie;
  207.     /**
  208.      * @var string|null
  209.      *
  210.      * @ORM\Column(name="note", type="string", nullable=true)
  211.      */
  212.     private $note;
  213.     /**
  214.      * @var string|null
  215.      *
  216.      * @ORM\Column(name="numvoie", type="string", nullable=true)
  217.      */
  218.     private $numvoie;
  219.     /**
  220.      * @var string|null
  221.      *
  222.      * @ORM\Column(name="pj", type="string", nullable=true)
  223.      */
  224.     private $pj;
  225.     /**
  226.      * @var string|null
  227.      *
  228.      * @ORM\Column(name="prestation", type="string", nullable=true)
  229.      */
  230.     private $prestation;
  231.     /**
  232.      * @var string|null
  233.      *
  234.      * @ORM\Column(name="regime_speciaux", type="string", nullable=true)
  235.      */
  236.     private $regimeSpeciaux;
  237.     /**
  238.      * @var string|null
  239.      *
  240.      * @ORM\Column(name="repas", type="string", nullable=true)
  241.      */
  242.     private $repas;
  243.     /**
  244.      * @var string|null
  245.      *
  246.      * @ORM\Column(name="siren", type="string", nullable=true)
  247.      */
  248.     private $siren;
  249.     /**
  250.      * @var string|null
  251.      *
  252.      * @ORM\Column(name="siret", type="string", nullable=true)
  253.      */
  254.     private $siret;
  255.     /**
  256.      * @var string|null
  257.      *
  258.      * @ORM\Column(name="site", type="string", nullable=true)
  259.      */
  260.     private $site;
  261.     /**
  262.      * @var string|null
  263.      *
  264.      * @ORM\Column(name="stock", type="string", nullable=true)
  265.      */
  266.     private $stock;
  267.     /**
  268.      * @var string|null
  269.      *
  270.      * @ORM\Column(name="ta", type="string", nullable=true)
  271.      */
  272.     private $ta;
  273.     /**
  274.      * @var string|null
  275.      *
  276.      * @ORM\Column(name="tel", type="string", nullable=true)
  277.      */
  278.     private $tel;
  279.     /**
  280.      * @var string|null
  281.      *
  282.      * @ORM\Column(name="telephone", type="string", nullable=true)
  283.      */
  284.     private $telephone;
  285.     /**
  286.      * @var string|null
  287.      *
  288.      * @ORM\Column(name="top_ferm_adr_complete", type="string", nullable=true)
  289.      */
  290.     private $topFermAdrComplete;
  291.     /**
  292.      * @var string|null
  293.      *
  294.      * @ORM\Column(name="top_ferm_adr_pcomp", type="string", nullable=true)
  295.      */
  296.     private $topFermAdrPcomp;
  297.     /**
  298.      * @var string|null
  299.      *
  300.      * @ORM\Column(name="top_ferm_adr_pcomp2", type="string", nullable=true)
  301.      */
  302.     private $topFermAdrPcomp2;
  303.     /**
  304.      * @var string|null
  305.      *
  306.      * @ORM\Column(name="top_ferm_comp_ss_num", type="string", nullable=true)
  307.      */
  308.     private $topFermCompSsNum;
  309.     /**
  310.      * @var string|null
  311.      *
  312.      * @ORM\Column(name="top_ferm_complete", type="string", nullable=true)
  313.      */
  314.     private $topFermComplete;
  315.     /**
  316.      * @var string|null
  317.      *
  318.      * @ORM\Column(name="top_ferm_pcompl", type="string", nullable=true)
  319.      */
  320.     private $topFermPcompl;
  321.     /**
  322.      * @var string|null
  323.      *
  324.      * @ORM\Column(name="top_ferm_pcompl2", type="string", nullable=true)
  325.      */
  326.     private $topFermPcompl2;
  327.     /**
  328.      * @var string|null
  329.      *
  330.      * @ORM\Column(name="top_ferm_pcompl2_ss_num", type="string", nullable=true)
  331.      */
  332.     private $topFermPcompl2SsNum;
  333.     /**
  334.      * @var string|null
  335.      *
  336.      * @ORM\Column(name="top_ferm_pcompl_ss_num", type="string", nullable=true)
  337.      */
  338.     private $topFermPcomplSsNum;
  339.     /**
  340.      * @var string|null
  341.      *
  342.      * @ORM\Column(name="type_cuisine", type="string", nullable=true)
  343.      */
  344.     private $typeCuisine;
  345.     /**
  346.      * @var string|null
  347.      *
  348.      * @ORM\Column(name="typevoie", type="string", nullable=true)
  349.      */
  350.     private $typevoie;
  351.     /**
  352.      * @var string|null
  353.      *
  354.      * @ORM\Column(name="villenorm", type="string", nullable=true)
  355.      */
  356.     private $villenorm;
  357.     /**
  358.      * 
  359.      * @ORM\Column(name="rappel", type="boolean", nullable="true")
  360.      */
  361.     private $rappel;
  362.     /**
  363.      * @ORM\Column(name="traite", type="boolean", nullable="true")
  364.      */
  365.     private $traite;
  366.      /**
  367.     * @ORM\Column(name="isfast_food", type="boolean")
  368.     */
  369.     private $fastFood;
  370.     /**
  371.     * @ORM\Column(name="isrestaurant", type="boolean")
  372.     */
  373.     private $restaurant;
  374.     /**
  375.     * @ORM\Column(name="iscreperie", type="boolean")
  376.     */
  377.     private $creperie;
  378.     /**
  379.     * @ORM\Column(name="isbrasserie", type="boolean")
  380.     */
  381.     private $brasserie;
  382.      /**
  383.     * @ORM\Column(name="ispizzeria", type="boolean")
  384.     */
  385.     private $pizzeria;
  386.      /**
  387.     * @ORM\Column(name="boulangerie", type="boolean")
  388.     */
  389.     private $boulangerie;
  390.      /**
  391.     * @ORM\Column(name="bar", type="boolean")
  392.     */
  393.     private $bar;
  394.     /**
  395.      * @var string|null
  396.      *
  397.      * @ORM\Column(name="code_saisie", type="string", length=50, nullable=true)
  398.      */
  399.     private $codeSaisie;
  400.     /**
  401.      * @var \DateTime|null
  402.      *
  403.      * @ORM\Column(name="date_de_validation", type="date", nullable=true)
  404.      */
  405.     private $dateValidation;
  406.     
  407.     /**
  408.      * @var string|null
  409.      *
  410.      * @ORM\Column(name="evenement", type="string", length=50, nullable=true)
  411.      */
  412.     private $evenement;
  413.     /**
  414.      * @var \DateTime|null
  415.      *
  416.      * @ORM\Column(name="date_evenement", type="date", nullable=true)
  417.      */
  418.     private $dateEvenement;
  419.       /**
  420.      * @var bool|null
  421.      *
  422.      * @ORM\Column(name="doublon", type="boolean", nullable=true)
  423.      */
  424.     private $doublon;
  425.     /**
  426.      * @var string|null
  427.      *
  428.      * @ORM\Column(name="dep", type="string", nullable=true)
  429.      */
  430.     private $dep;
  431.      /**
  432.      * @var bool|null
  433.      *
  434.      * @ORM\Column(name="nom_ok", type="boolean", nullable=true)
  435.      */
  436.     private $nom_ok;
  437.      /**
  438.      * @var bool|null
  439.      *
  440.      * @ORM\Column(name="adresse_ok", type="boolean", nullable=true)
  441.      */
  442.     private $adresse_ok;
  443.      /**
  444.      * @var bool|null
  445.      *
  446.      * @ORM\Column(name="codens_originals", type="boolean", nullable=true)
  447.      */
  448.     private $codens_originals;
  449.     /**
  450.      * @ORM\Column(name="ligne_dupliquer", type="boolean", nullable="true" )
  451.     */
  452.     private $duplicated;
  453.     /**
  454.      * @ORM\Column(name="siren_ok", type="boolean", nullable="true" )
  455.     */
  456.     private $siren_ok;
  457.     /**
  458.      * @ORM\Column(name="tel_ok", type="boolean", nullable="true" )
  459.     */
  460.     private $tel_ok;
  461.     /**
  462.      * @ORM\Column(name="admin_verifier", type="boolean", nullable="true")
  463.      */
  464.     private $adminV;
  465.     /**
  466.      * @ORM\Column(name="ferm", type="boolean", nullable="true")
  467.      */
  468.     private $ferm;
  469.     /**
  470.      * @ORM\Column(name="pas_garder", type="boolean", nullable="true")
  471.      */
  472.     private $pasGarder;
  473.     /**
  474.      * @ORM\Column(name="cuisine_monde",type="boolean", nullable="true")
  475.      */
  476.     private $cuisineMonde;
  477.     /**
  478.      * @ORM\Column(name="cafe",type="boolean", nullable="true")
  479.      */
  480.     private $cafe;
  481.     /**
  482.      * @ORM\Column(name="salon_the",type="boolean", nullable="true")
  483.      */
  484.     private $salon_the;
  485.      /**
  486.      * @ORM\Column(name="modif_position",type="boolean", nullable="true")
  487.      */
  488.     private $modifPosition;
  489.      /**
  490.      * @ORM\Column(name="poi_x",type="float", nullable="true")
  491.      */
  492.     private $poiX;
  493.      /**
  494.      * @ORM\Column(name="poi_y",type="float", nullable="true")
  495.      */
  496.     private $poiY;
  497.      
  498.     
  499.     public function setDuplicated($duplicated){
  500.         $this->duplicated=$duplicated;
  501.         return $this;
  502.     }
  503.     public function getDuplicated(){
  504.         return $this->duplicated;
  505.         
  506.     }
  507.     public function getId(): ?int
  508.     {
  509.         return $this->id;
  510.     }
  511.     public function getActivite(): ?string
  512.     {
  513.         return $this->activite;
  514.     }
  515.     public function setActivite(?string $activite): self
  516.     {
  517.         $this->activite $activite;
  518.         return $this;
  519.     }
  520.     public function getAmbiance(): ?string
  521.     {
  522.         return $this->ambiance;
  523.     }
  524.     public function setAmbiance(?string $ambiance): self
  525.     {
  526.         $this->ambiance $ambiance;
  527.         return $this;
  528.     }
  529.     public function getBudget(): ?string
  530.     {
  531.         return $this->budget;
  532.     }
  533.     public function setBudget(?string $budget): self
  534.     {
  535.         $this->budget $budget;
  536.         return $this;
  537.     }
  538.     public function getCleAdrComplete(): ?string
  539.     {
  540.         return $this->cleAdrComplete;
  541.     }
  542.     public function setCleAdrComplete(?string $cleAdrComplete): self
  543.     {
  544.         $this->cleAdrComplete $cleAdrComplete;
  545.         return $this;
  546.     }
  547.     public function getCleAdrPcomp(): ?string
  548.     {
  549.         return $this->cleAdrPcomp;
  550.     }
  551.     public function setCleAdrPcomp(?string $cleAdrPcomp): self
  552.     {
  553.         $this->cleAdrPcomp $cleAdrPcomp;
  554.         return $this;
  555.     }
  556.     public function getCleAdrPcomp2(): ?string
  557.     {
  558.         return $this->cleAdrPcomp2;
  559.     }
  560.     public function setCleAdrPcomp2(?string $cleAdrPcomp2): self
  561.     {
  562.         $this->cleAdrPcomp2 $cleAdrPcomp2;
  563.         return $this;
  564.     }
  565.     public function getCleCompSsNum(): ?string
  566.     {
  567.         return $this->cleCompSsNum;
  568.     }
  569.     public function setCleCompSsNum(?string $cleCompSsNum): self
  570.     {
  571.         $this->cleCompSsNum $cleCompSsNum;
  572.         return $this;
  573.     }
  574.     public function getCleComplete(): ?string
  575.     {
  576.         return $this->cleComplete;
  577.     }
  578.     public function setCleComplete(?string $cleComplete): self
  579.     {
  580.         $this->cleComplete $cleComplete;
  581.         return $this;
  582.     }
  583.     public function getClePcompl(): ?string
  584.     {
  585.         return $this->clePcompl;
  586.     }
  587.     public function setClePcompl(?string $clePcompl): self
  588.     {
  589.         $this->clePcompl $clePcompl;
  590.         return $this;
  591.     }
  592.     public function getClePcompl2(): ?string
  593.     {
  594.         return $this->clePcompl2;
  595.     }
  596.     public function setClePcompl2(?string $clePcompl2): self
  597.     {
  598.         $this->clePcompl2 $clePcompl2;
  599.         return $this;
  600.     }
  601.     public function getClePcompl2SsNum(): ?string
  602.     {
  603.         return $this->clePcompl2SsNum;
  604.     }
  605.     public function setClePcompl2SsNum(?string $clePcompl2SsNum): self
  606.     {
  607.         $this->clePcompl2SsNum $clePcompl2SsNum;
  608.         return $this;
  609.     }
  610.     public function getClePcomplSsNum(): ?string
  611.     {
  612.         return $this->clePcomplSsNum;
  613.     }
  614.     public function setClePcomplSsNum(?string $clePcomplSsNum): self
  615.     {
  616.         $this->clePcomplSsNum $clePcomplSsNum;
  617.         return $this;
  618.     }
  619.     public function getCodens(): ?string
  620.     {
  621.         return $this->codens;
  622.     }
  623.     public function setCodens(?string $codens): self
  624.     {
  625.         $this->codens $codens;
  626.         return $this;
  627.     }
  628.     public function getCodinsee(): ?string
  629.     {
  630.         return $this->codinsee;
  631.     }
  632.     public function setCodinsee(?string $codinsee): self
  633.     {
  634.         $this->codinsee $codinsee;
  635.         return $this;
  636.     }
  637.     public function getCodpost(): ?string
  638.     {
  639.         return $this->codpost;
  640.     }
  641.     public function setCodpost(?string $codpost): self
  642.     {
  643.         $this->codpost $codpost;
  644.         return $this;
  645.     }
  646.     public function getComVali(): ?string
  647.     {
  648.         return $this->comVali;
  649.     }
  650.     public function setComVali(?string $comVali): self
  651.     {
  652.         $this->comVali $comVali;
  653.         return $this;
  654.     }
  655.     public function getCommune(): ?string
  656.     {
  657.         return $this->commune;
  658.     }
  659.     public function setCommune(?string $commune): self
  660.     {
  661.         $this->commune $commune;
  662.         return $this;
  663.     }
  664.     public function getCompvoie(): ?string
  665.     {
  666.         return $this->compvoie;
  667.     }
  668.     public function setCompvoie(?string $compvoie): self
  669.     {
  670.         $this->compvoie $compvoie;
  671.         return $this;
  672.     }
  673.     public function getCouleurFin(): ?string
  674.     {
  675.         return $this->couleurFin;
  676.     }
  677.     public function setCouleurFin(?string $couleurFin): self
  678.     {
  679.         $this->couleurFin $couleurFin;
  680.         return $this;
  681.     }
  682.     public function getCouleurValid(): ?string
  683.     {
  684.         return $this->couleurValid;
  685.     }
  686.     public function setCouleurValid(?string $couleurValid): self
  687.     {
  688.         $this->couleurValid $couleurValid;
  689.         return $this;
  690.     }
  691.     public function getDatecreationetablissement(): ?string
  692.     {
  693.         return $this->datecreationetablissement;
  694.     }
  695.     public function setDatecreationetablissement(?string $datecreationetablissement): self
  696.     {
  697.         $this->datecreationetablissement $datecreationetablissement;
  698.         return $this;
  699.     }
  700.     public function getDatedebut(): ?string
  701.     {
  702.         return $this->datedebut;
  703.     }
  704.     public function setDatedebut(?string $datedebut): self
  705.     {
  706.         $this->datedebut $datedebut;
  707.         return $this;
  708.     }
  709.     public function getDatederniertraitementetablisseme(): ?string
  710.     {
  711.         return $this->datederniertraitementetablisseme;
  712.     }
  713.     public function setDatederniertraitementetablisseme(?string $datederniertraitementetablisseme): self
  714.     {
  715.         $this->datederniertraitementetablisseme $datederniertraitementetablisseme;
  716.         return $this;
  717.     }
  718.     public function getDenominationF(): ?string
  719.     {
  720.         return $this->denominationF;
  721.     }
  722.     public function setDenominationF(?string $denominationF): self
  723.     {
  724.         $this->denominationF $denominationF;
  725.         return $this;
  726.     }
  727.     public function getFonctionalite(): ?string
  728.     {
  729.         return $this->fonctionalite;
  730.     }
  731.     public function setFonctionalite(?string $fonctionalite): self
  732.     {
  733.         $this->fonctionalite $fonctionalite;
  734.         return $this;
  735.     }
  736.     public function getFourchettePrix(): ?string
  737.     {
  738.         return $this->fourchettePrix;
  739.     }
  740.     public function setFourchettePrix(?string $fourchettePrix): self
  741.     {
  742.         $this->fourchettePrix $fourchettePrix;
  743.         return $this;
  744.     }
  745.     public function getHoraires(): ?string
  746.     {
  747.         return $this->horaires;
  748.     }
  749.     public function setHoraires(?string $horaires): self
  750.     {
  751.         $this->horaires $horaires;
  752.         return $this;
  753.     }
  754.     public function getIdPj(): ?string
  755.     {
  756.         return $this->idPj;
  757.     }
  758.     public function setIdPj(?string $idPj): self
  759.     {
  760.         $this->idPj $idPj;
  761.         return $this;
  762.     }
  763.     public function getIdStock(): ?string
  764.     {
  765.         return $this->idStock;
  766.     }
  767.     public function setIdStock(?string $idStock): self
  768.     {
  769.         $this->idStock $idStock;
  770.         return $this;
  771.     }
  772.     public function getIdTa(): ?string
  773.     {
  774.         return $this->idTa;
  775.     }
  776.     public function setIdTa(?string $idTa): self
  777.     {
  778.         $this->idTa $idTa;
  779.         return $this;
  780.     }
  781.     public function getNomvoie(): ?string
  782.     {
  783.         return $this->nomvoie;
  784.     }
  785.     public function setNomvoie(?string $nomvoie): self
  786.     {
  787.         $this->nomvoie $nomvoie;
  788.         return $this;
  789.     }
  790.     public function getNote(): ?string
  791.     {
  792.         return $this->note;
  793.     }
  794.     public function setNote(?string $note): self
  795.     {
  796.         $this->note $note;
  797.         return $this;
  798.     }
  799.     public function getNumvoie(): ?string
  800.     {
  801.         return $this->numvoie;
  802.     }
  803.     public function setNumvoie(?string $numvoie): self
  804.     {
  805.         $this->numvoie $numvoie;
  806.         return $this;
  807.     }
  808.     public function getPj(): ?string
  809.     {
  810.         return $this->pj;
  811.     }
  812.     public function setPj(?string $pj): self
  813.     {
  814.         $this->pj $pj;
  815.         return $this;
  816.     }
  817.     public function getPrestation(): ?string
  818.     {
  819.         return $this->prestation;
  820.     }
  821.     public function setPrestation(?string $prestation): self
  822.     {
  823.         $this->prestation $prestation;
  824.         return $this;
  825.     }
  826.     public function getRegimeSpeciaux(): ?string
  827.     {
  828.         return $this->regimeSpeciaux;
  829.     }
  830.     public function setRegimeSpeciaux(?string $regimeSpeciaux): self
  831.     {
  832.         $this->regimeSpeciaux $regimeSpeciaux;
  833.         return $this;
  834.     }
  835.     public function getRepas(): ?string
  836.     {
  837.         return $this->repas;
  838.     }
  839.     public function setRepas(?string $repas): self
  840.     {
  841.         $this->repas $repas;
  842.         return $this;
  843.     }
  844.     public function getSiren(): ?string
  845.     {
  846.         return $this->siren;
  847.     }
  848.     public function setSiren(?string $siren): self
  849.     {
  850.         $this->siren $siren;
  851.         return $this;
  852.     }
  853.     public function getSiret(): ?string
  854.     {
  855.         return $this->siret;
  856.     }
  857.     public function setSiret(?string $siret): self
  858.     {
  859.         $this->siret $siret;
  860.         return $this;
  861.     }
  862.     public function getSite(): ?string
  863.     {
  864.         return $this->site;
  865.     }
  866.     public function setSite(?string $site): self
  867.     {
  868.         $this->site $site;
  869.         return $this;
  870.     }
  871.     public function getStock(): ?string
  872.     {
  873.         return $this->stock;
  874.     }
  875.     public function setStock(?string $stock): self
  876.     {
  877.         $this->stock $stock;
  878.         return $this;
  879.     }
  880.     public function getTa(): ?string
  881.     {
  882.         return $this->ta;
  883.     }
  884.     public function setTa(?string $ta): self
  885.     {
  886.         $this->ta $ta;
  887.         return $this;
  888.     }
  889.     public function getTel(): ?string
  890.     {
  891.         return $this->tel;
  892.     }
  893.     public function setTel(?string $tel): self
  894.     {
  895.         $this->tel $tel;
  896.         return $this;
  897.     }
  898.     public function getTelephone(): ?string
  899.     {
  900.         return $this->telephone;
  901.     }
  902.     public function setTelephone(?string $telephone): self
  903.     {
  904.         $this->telephone $telephone;
  905.         return $this;
  906.     }
  907.     public function getTopFermAdrComplete(): ?string
  908.     {
  909.         return $this->topFermAdrComplete;
  910.     }
  911.     public function setTopFermAdrComplete(?string $topFermAdrComplete): self
  912.     {
  913.         $this->topFermAdrComplete $topFermAdrComplete;
  914.         return $this;
  915.     }
  916.     public function getTopFermAdrPcomp(): ?string
  917.     {
  918.         return $this->topFermAdrPcomp;
  919.     }
  920.     public function setTopFermAdrPcomp(?string $topFermAdrPcomp): self
  921.     {
  922.         $this->topFermAdrPcomp $topFermAdrPcomp;
  923.         return $this;
  924.     }
  925.     public function getTopFermAdrPcomp2(): ?string
  926.     {
  927.         return $this->topFermAdrPcomp2;
  928.     }
  929.     public function setTopFermAdrPcomp2(?string $topFermAdrPcomp2): self
  930.     {
  931.         $this->topFermAdrPcomp2 $topFermAdrPcomp2;
  932.         return $this;
  933.     }
  934.     public function getTopFermCompSsNum(): ?string
  935.     {
  936.         return $this->topFermCompSsNum;
  937.     }
  938.     public function setTopFermCompSsNum(?string $topFermCompSsNum): self
  939.     {
  940.         $this->topFermCompSsNum $topFermCompSsNum;
  941.         return $this;
  942.     }
  943.     public function getTopFermComplete(): ?string
  944.     {
  945.         return $this->topFermComplete;
  946.     }
  947.     public function setTopFermComplete(?string $topFermComplete): self
  948.     {
  949.         $this->topFermComplete $topFermComplete;
  950.         return $this;
  951.     }
  952.     public function getTopFermPcompl(): ?string
  953.     {
  954.         return $this->topFermPcompl;
  955.     }
  956.     public function setTopFermPcompl(?string $topFermPcompl): self
  957.     {
  958.         $this->topFermPcompl $topFermPcompl;
  959.         return $this;
  960.     }
  961.     public function getTopFermPcompl2(): ?string
  962.     {
  963.         return $this->topFermPcompl2;
  964.     }
  965.     public function setTopFermPcompl2(?string $topFermPcompl2): self
  966.     {
  967.         $this->topFermPcompl2 $topFermPcompl2;
  968.         return $this;
  969.     }
  970.     public function getTopFermPcompl2SsNum(): ?string
  971.     {
  972.         return $this->topFermPcompl2SsNum;
  973.     }
  974.     public function setTopFermPcompl2SsNum(?string $topFermPcompl2SsNum): self
  975.     {
  976.         $this->topFermPcompl2SsNum $topFermPcompl2SsNum;
  977.         return $this;
  978.     }
  979.     public function getTopFermPcomplSsNum(): ?string
  980.     {
  981.         return $this->topFermPcomplSsNum;
  982.     }
  983.     public function setTopFermPcomplSsNum(?string $topFermPcomplSsNum): self
  984.     {
  985.         $this->topFermPcomplSsNum $topFermPcomplSsNum;
  986.         return $this;
  987.     }
  988.     public function getTypeCuisine(): ?string
  989.     {
  990.         return $this->typeCuisine;
  991.     }
  992.     public function setTypeCuisine(?string $typeCuisine): self
  993.     {
  994.         $this->typeCuisine $typeCuisine;
  995.         return $this;
  996.     }
  997.     public function getTypevoie(): ?string
  998.     {
  999.         return $this->typevoie;
  1000.     }
  1001.     public function setTypevoie(?string $typevoie): self
  1002.     {
  1003.         $this->typevoie $typevoie;
  1004.         return $this;
  1005.     }
  1006.     public function getVillenorm(): ?string
  1007.     {
  1008.         return $this->villenorm;
  1009.     }
  1010.     public function setVillenorm(?string $villenorm): self
  1011.     {
  1012.         $this->villenorm $villenorm;
  1013.         return $this;
  1014.     }
  1015.     public function getRappel(): ?bool
  1016.     {
  1017.         return $this->rappel;
  1018.     }
  1019.     public function setRappel(?bool $rappel): self
  1020.     {
  1021.         $this->rappel $rappel;
  1022.         return $this;
  1023.     }
  1024.     public function getTraite(): ?bool
  1025.     {
  1026.         return $this->traite;
  1027.     }
  1028.     public function setTraite(?bool $traite): self
  1029.     {
  1030.         $this->traite $traite;
  1031.         return $this;
  1032.     }
  1033.     public function getFastFood(): ?bool
  1034.     {
  1035.         return $this->fastFood;
  1036.     }
  1037.     public function setFastFood(?bool $fastFood): self
  1038.     {
  1039.         $this->fastFood $fastFood;
  1040.         return $this;
  1041.     }
  1042.     public function getRestaurant(): ?bool
  1043.     {
  1044.         return $this->restaurant;
  1045.     }
  1046.     public function setRestaurant(?bool $restaurant): self
  1047.     {
  1048.         $this->restaurant $restaurant;
  1049.         return $this;
  1050.     }
  1051.     public function getCreperie(): ?bool
  1052.     {
  1053.         return $this->creperie;
  1054.     }
  1055.     public function setCreperie(?bool $creperie): self
  1056.     {
  1057.         $this->creperie $creperie;
  1058.         return $this;
  1059.     }
  1060.     public function getBrasserie(): ?bool
  1061.     {
  1062.         return $this->brasserie;
  1063.     }
  1064.     public function setBrasserie(?bool $brasserie): self
  1065.     {
  1066.         $this->brasserie $brasserie;
  1067.         return $this;
  1068.     }
  1069.     public function getDateValidation(): ?\DateTimeInterface
  1070.     {
  1071.         return $this->dateValidation;
  1072.     }
  1073.     public function setDateValidation(?\DateTimeInterface $dateValidation): self
  1074.     {
  1075.         $this->dateValidation $dateValidation;
  1076.         return $this;
  1077.     }
  1078.     public function getEvenement(): ?string
  1079.     {
  1080.         return $this->evenement;
  1081.     }
  1082.     public function setEvenement(?string $evenement): self
  1083.     {
  1084.         $this->evenement $evenement;
  1085.         return $this;
  1086.     }
  1087.     public function getDateEvenement(): ?\DateTimeInterface
  1088.     {
  1089.         return $this->dateEvenement;
  1090.     }
  1091.     public function setDateEvenement(?\DateTimeInterface $dateEvenement): self
  1092.     {
  1093.         $this->dateEvenement $dateEvenement;
  1094.         return $this;
  1095.     }
  1096.     public function getDoublon(): ?bool
  1097.     {
  1098.         return $this->doublon;
  1099.     }
  1100.     public function setDoublon(?bool $doublon): self
  1101.     {
  1102.         $this->doublon $doublon;
  1103.         return $this;
  1104.     }
  1105.     public function getDep(): ?string
  1106.     {
  1107.         return $this->dep;
  1108.     }
  1109.     public function setDep(?string $dep): self
  1110.     {
  1111.         $this->dep $dep;
  1112.         return $this;
  1113.     }
  1114.     public function getPizzeria(): ?bool
  1115.     {
  1116.         return $this->pizzeria;
  1117.     }
  1118.     public function setPizzeria(?bool $pizzeria): self
  1119.     {
  1120.         $this->pizzeria $pizzeria;
  1121.         return $this;
  1122.     }
  1123.     public function getCodeSaisie(): ?string
  1124.     {
  1125.         return $this->codeSaisie;
  1126.     }
  1127.     public function setCodeSaisie(?string $codeSaisie): self
  1128.     {
  1129.         $this->codeSaisie $codeSaisie;
  1130.         return $this;
  1131.     }
  1132.     public function getNomOk(): ?bool
  1133.     {
  1134.         return $this->nom_ok;
  1135.     }
  1136.     public function setNomOk(?bool $nom_ok): self
  1137.     {
  1138.         $this->nom_ok $nom_ok;
  1139.         return $this;
  1140.     }
  1141.     public function getAdresseOk(): ?bool
  1142.     {
  1143.         return $this->adresse_ok;
  1144.     }
  1145.     public function setAdresseOk(?bool $adresse_ok): self
  1146.     {
  1147.         $this->adresse_ok $adresse_ok;
  1148.         return $this;
  1149.     }
  1150.     public function getCodensOriginals(): ?bool
  1151.     {
  1152.         return $this->codens_originals;
  1153.     }
  1154.     public function setCodensOriginals(?bool $codens_originals): self
  1155.     {
  1156.         $this->codens_originals $codens_originals;
  1157.         return $this;
  1158.     }
  1159.     public function getSirenOk(): ?bool
  1160.     {
  1161.         return $this->siren_ok;
  1162.     }
  1163.     public function setSirenOk(?bool $siren_ok): self
  1164.     {
  1165.         $this->siren_ok $siren_ok;
  1166.         return $this;
  1167.     }
  1168.     public function getTelOk(): ?bool
  1169.     {
  1170.         return $this->tel_ok;
  1171.     }
  1172.     public function setTelOk(?bool $tel_ok): self
  1173.     {
  1174.         $this->tel_ok $tel_ok;
  1175.         return $this;
  1176.     }
  1177.     public function getAdminV(): ?bool
  1178.     {
  1179.         return $this->adminV;
  1180.     }
  1181.     public function setAdminV(?bool $adminV): self
  1182.     {
  1183.         $this->adminV $adminV;
  1184.         return $this;
  1185.     }
  1186.     public function getFerm(): ?bool
  1187.     {
  1188.         return $this->ferm;
  1189.     }
  1190.     public function setFerm(?bool $ferm): self
  1191.     {
  1192.         $this->ferm $ferm;
  1193.         return $this;
  1194.     }
  1195.     public function getBoulangerie(): ?bool
  1196.     {
  1197.         return $this->boulangerie;
  1198.     }
  1199.     public function setBoulangerie(?bool $boulangerie): self
  1200.     {
  1201.         $this->boulangerie $boulangerie;
  1202.         return $this;
  1203.     }
  1204.     public function getBar(): ?bool
  1205.     {
  1206.         return $this->bar;
  1207.     }
  1208.     public function setBar(?bool $bar): self
  1209.     {
  1210.         $this->bar $bar;
  1211.         return $this;
  1212.     }
  1213.     public function getPasGarder(): ?bool
  1214.     {
  1215.         return $this->pasGarder;
  1216.     }
  1217.     public function setPasGarder(?bool $pasGarder): self
  1218.     {
  1219.         $this->pasGarder $pasGarder;
  1220.         return $this;
  1221.     }
  1222.     public function getCuisineMonde(): ?bool
  1223.     {
  1224.         return $this->cuisineMonde;
  1225.     }
  1226.     public function setCuisineMonde(?bool $cuisineMonde): self
  1227.     {
  1228.         $this->cuisineMonde $cuisineMonde;
  1229.         return $this;
  1230.     }
  1231.     public function getCafe(): ?bool
  1232.     {
  1233.         return $this->cafe;
  1234.     }
  1235.     public function setCafe(?bool $cafe): self
  1236.     {
  1237.         $this->cafe $cafe;
  1238.         return $this;
  1239.     }
  1240.     public function getSalonThe(): ?bool
  1241.     {
  1242.         return $this->salon_the;
  1243.     }
  1244.     public function setSalonThe(?bool $salon_the): self
  1245.     {
  1246.         $this->salon_the $salon_the;
  1247.         return $this;
  1248.     }
  1249.     /**
  1250.      * Get the value of poiY
  1251.      */ 
  1252.     public function getPoiY()
  1253.     {
  1254.         return $this->poiY;
  1255.     }
  1256.     /**
  1257.      * Set the value of poiY
  1258.      *
  1259.      * @return  self
  1260.      */ 
  1261.     public function setPoiY($poiY)
  1262.     {
  1263.         $this->poiY $poiY;
  1264.         return $this;
  1265.     }
  1266.     /**
  1267.      * Get the value of poiX
  1268.      */ 
  1269.     public function getPoiX()
  1270.     {
  1271.         return $this->poiX;
  1272.     }
  1273.     /**
  1274.      * Set the value of poiX
  1275.      *
  1276.      * @return  self
  1277.      */ 
  1278.     public function setPoiX($poiX)
  1279.     {
  1280.         $this->poiX $poiX;
  1281.         return $this;
  1282.     }
  1283.     /**
  1284.      * Get the value of modifPosition
  1285.      */ 
  1286.     public function getModifPosition()
  1287.     {
  1288.         return $this->modifPosition;
  1289.     }
  1290.     /**
  1291.      * Set the value of modifPosition
  1292.      *
  1293.      * @return  self
  1294.      */ 
  1295.     public function setModifPosition($modifPosition)
  1296.     {
  1297.         $this->modifPosition $modifPosition;
  1298.         return $this;
  1299.     }
  1300. }