src/Entity/StatistiquesMensuellesPrestataire.php line 14

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. /**
  3.  * @author Mehrez Labidi
  4.  */
  5. namespace App\Entity;
  6.     
  7. use App\Repository\StatistiquesMensuellesPrestataireRepository;
  8. use Doctrine\ORM\Mapping as ORM;    
  9. /**
  10.  * @ORM\Entity(repositoryClass=StatistiquesMensuellesPrestataireRepository::class)
  11.  * @ORM\Table(name="fusacq_dbo.statistiques_mensuelles_prestataire")
  12.  */
  13. class  StatistiquesMensuellesPrestataire {    
  14.     
  15.     /**    
  16.      * @var int @ORM\Id    
  17.      * @ORM\Column(type="integer",name="id_statistique_mensuelle" )    
  18.      * @ORM\GeneratedValue(strategy="AUTO")    
  19.      */    
  20.     protected $id_statistique_mensuelle;    
  21.     
  22.     /**    
  23.      *@var string @ORM\Column(type="integer",  name="id_service_prestataire"  )    
  24.      */    
  25.     protected $id_service_prestataire;    
  26.     
  27.     /**    
  28.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_affichages_fiche"  )    
  29.      */    
  30.     protected $nb_affichages_fiche;    
  31.     
  32.     /**    
  33.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_clics_site_internet"  )    
  34.      */    
  35.     protected $nb_clics_site_internet;    
  36.     
  37.     /**    
  38.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_contacts_generes"  )    
  39.      */    
  40.     protected $nb_contacts_generes;    
  41.     
  42.     /**    
  43.      *@var string @ORM\Column(type="string",length=8, nullable=true, name="date_mois"  )    
  44.      */    
  45.     protected $date_mois;    
  46.     
  47.     /**    
  48.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_aff_fiche_recherche"  )    
  49.      */    
  50.     protected $nb_aff_fiche_recherche;    
  51.     
  52.     /**    
  53.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_aff_fiche_dernieres"  )    
  54.      */    
  55.     protected $nb_aff_fiche_dernieres;    
  56.     
  57.     /**    
  58.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_aff_fiche_newsletter"  )    
  59.      */    
  60.     protected $nb_aff_fiche_newsletter;    
  61.     
  62.     /**    
  63.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_aff_fiche_mail"  )    
  64.      */    
  65.     protected $nb_aff_fiche_mail;    
  66.     
  67.     /**    
  68.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_aff_fiche_annonce_vente"  )    
  69.      */    
  70.     protected $nb_aff_fiche_annonce_vente;    
  71.     
  72.     /**    
  73.      *@var string @ORM\Column(type="integer", nullable=true, name="nb_aff_fiche_annonce_achat"  )    
  74.      */    
  75.     protected $nb_aff_fiche_annonce_achat;    
  76.     
  77.     /**    
  78.      *@var string @ORM\Column(type="integer",  name="nb_aff_fiche_fonds"  )    
  79.      */    
  80.     protected $nb_aff_fiche_fonds;    
  81.     
  82.     /**    
  83.      *@var string @ORM\Column(type="integer",  name="nb_aff_fiche_menu_gauche_consultation_annonce_vendeur"  )    
  84.      */    
  85.     protected $nb_aff_fiche_menu_gauche_consultation_annonce_vendeur;    
  86.     
  87.     /**    
  88.      *@var string @ORM\Column(type="string",length=45, nullable=true, name="site_partenaire"  )    
  89.      */    
  90.     protected $site_partenaire;    
  91.     
  92.     /**    
  93.      *@var string @ORM\Column(type="integer",  name="nb_clics_url_vignette"  )    
  94.      */    
  95.     protected $nb_clics_url_vignette;    
  96.     
  97.     public function _get($property)    
  98.     {    
  99.         return $this->$property;    
  100.     }    
  101.         
  102.     public function _set($property$value)    
  103.     {    
  104.         $this->$property $value;    
  105.     }    
  106.     
  107. }