src/Entity/LocalisationsPrestataire.php line 17

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4.  * @author Mehrez Labidi
  5.  */
  6. namespace App\Entity;
  7. use App\Repository\LocalisationsPrestataireRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * @ORM\Entity(repositoryClass=LocalisationsPrestataireRepository::class)
  11.  * @ORM\Table(name="localisations_prestataire")
  12.  */
  13. class LocalisationsPrestataire
  14. {
  15.     /**
  16.      * @var int @ORM\Id
  17.      * @ORM\Column(type="integer")
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     protected $id_localisation_prestataire;
  21.     /**
  22.      * @var string @ORM\Column(type="string", nullable=true, name="id_localisation_pere", options={"default"= null})
  23.      */
  24.     protected $id_localisation_pere;
  25.     /**
  26.      * @var string @ORM\Column(type="string", nullable=true, name="nom_localisation", options={"default"= null})
  27.      */
  28.     protected $nom_localisation;
  29.     /**
  30.      * @var string @ORM\Column(type="string", nullable=true, name="code_insee", options={"default"= null})
  31.      */
  32.     protected $code_insee;
  33.     /**
  34.      * @var string @ORM\Column(type="string", nullable=true, name="nom_langue", options={"default"= null})
  35.      */
  36.     protected $nom_langue;
  37.     /**
  38.      * @var string @ORM\Column(type="string", nullable=true, name="taux_tva", options={"default"= null})
  39.      */
  40.     protected $taux_tva;
  41.     /**
  42.      * @var string @ORM\Column(type="string", nullable=true, name="recherche", options={"default"= null})
  43.      */
  44.     protected $recherche;
  45.     /**
  46.      * @var string @ORM\Column(type="integer", nullable=true, name="type_localisation", options={"default"= null})
  47.      */
  48.     protected $type_localisation;
  49.     public function __get($property)
  50.     {
  51.         return $this->$property;
  52.     }
  53.     public function __set($property$value)
  54.     {
  55.         $this->$property $value;
  56.     }
  57. }