src/Entity/RechercheMotsClesPrestataire.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\RechercheMotsClesPrestataireRepository;
  8. use Doctrine\ORM\Mapping as ORM;
  9. /**
  10.  * @ORM\Entity(repositoryClass=RechercheMotsClesPrestataireRepository::class)
  11.  * @ORM\Table(name="fusacq_dbo.recherche_mots_cles_prestataire")
  12.  */
  13. class RechercheMotsClesPrestataire
  14. {
  15.     /**
  16.      * @var int @ORM\Id
  17.      * @ORM\Column(type="integer")
  18.      * @ORM\GeneratedValue(strategy="AUTO")
  19.      */
  20.     protected $id_recherche;
  21.     /**
  22.      * @var string @ORM\Column(type="string", nullable=true, name="nom_recherche", options={"default"= null})
  23.      */
  24.     protected $nom_recherche;
  25.     /**
  26.      * @var string @ORM\Column(type="string", nullable=true, name="type", options={"default"= null})
  27.      */
  28.     protected $type;
  29.     /**
  30.      * @var string @ORM\Column(type="integer", nullable=true, name="nb_resultats", options={"default"= null})
  31.      */
  32.     protected $nb_resultats;
  33.     /**
  34.      * @var string @ORM\Column(type="text", nullable=true, name="mots_cles", options={"default"= null})
  35.      */
  36.     protected $mots_cles;
  37.     /**
  38.      * @var string @ORM\Column(type="string", nullable=true, name="id_region", options={"default"= null})
  39.      */
  40.     protected $id_region;
  41.     /**
  42.      * @var string @ORM\Column(type="integer", nullable=true, name="pointeur", options={"default"= null})
  43.      */
  44.     protected $pointeur;
  45.     /**
  46.      * @var string @ORM\Column(type="string", nullable=true, name="id_localisation_prestataire", options={"default"= null})
  47.      */
  48.     protected $id_localisation_prestataire;
  49.     /**
  50.      * @var string @ORM\Column(type="integer", nullable=true, name="id_service_prestataire", options={"default"= null})
  51.      */
  52.     protected $id_service_prestataire;
  53.     /**
  54.      * @var string @ORM\Column(type="integer", nullable=true, name="id_membre_equipe", options={"default"= null})
  55.      */
  56.     protected $id_membre_equipe;
  57.     public function __get($property)
  58.     {
  59.         return $this->$property;
  60.     }
  61.     public function __set($property$value)
  62.     {
  63.         $this->$property $value;
  64.     }
  65. }