src/Entity/Indicateurs.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\IndicateursRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=IndicateursRepository::class)
  7.  */
  8. class Indicateurs
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer", nullable=true)
  18.      */
  19.     private $VisitePJ;
  20.     /**
  21.      * @ORM\Column(type="integer", nullable=true)
  22.      */
  23.     private $VisitesT;
  24.     /**
  25.      * @ORM\Column(type="integer", nullable=true)
  26.      */
  27.     private $Nombre_Reco_suivit;
  28.     /**
  29.      * @ORM\Column(type="integer", nullable=true)
  30.      */
  31.     private $Nombre_Recherche_moteur;
  32.     /**
  33.      * @ORM\Column(type="integer", nullable=true)
  34.      */
  35.     private $Nombres_acces_Thematiques;
  36.     /**
  37.      * @ORM\Column(type="integer", nullable=true)
  38.      */
  39.     private $Nombres_Utilisateurs_Actifs;
  40.     /**
  41.      * @ORM\Column(type="integer", nullable=true)
  42.      */
  43.     private $Nombre_De_connexion_max;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getVisitePJ(): ?int
  49.     {
  50.         return $this->VisitePJ;
  51.     }
  52.     public function setVisitePJ(?int $VisitePJ): self
  53.     {
  54.         $this->VisitePJ $VisitePJ;
  55.         return $this;
  56.     }
  57.     public function getVisitesT(): ?int
  58.     {
  59.         return $this->VisitesT;
  60.     }
  61.     public function setVisitesT(?int $VisitesT): self
  62.     {
  63.         $this->VisitesT $VisitesT;
  64.         return $this;
  65.     }
  66.     public function getNombreRecoSuivit(): ?int
  67.     {
  68.         return $this->Nombre_Reco_suivit;
  69.     }
  70.     public function setNombreRecoSuivit(?int $Nombre_Reco_suivit): self
  71.     {
  72.         $this->Nombre_Reco_suivit $Nombre_Reco_suivit;
  73.         return $this;
  74.     }
  75.     public function getNombreRechercheMoteur(): ?int
  76.     {
  77.         return $this->Nombre_Recherche_moteur;
  78.     }
  79.     public function setNombreRechercheMoteur(?int $Nombre_Recherche_moteur): self
  80.     {
  81.         $this->Nombre_Recherche_moteur $Nombre_Recherche_moteur;
  82.         return $this;
  83.     }
  84.     public function getNombresAccesThematiques(): ?int
  85.     {
  86.         return $this->Nombres_acces_Thematiques;
  87.     }
  88.     public function setNombresAccesThematiques(?int $Nombres_accès_Thematiques): self
  89.     {
  90.         $this->Nombres_acces_Thematiques $Nombres_accès_Thematiques;
  91.         return $this;
  92.     }
  93.     public function getNombresUtilisateursActifs(): ?int
  94.     {
  95.         return $this->Nombres_Utilisateurs_Actifs;
  96.     }
  97.     public function setNombresUtilisateursActifs(?int $Nombres_Utilisateurs_Actifs): self
  98.     {
  99.         $this->Nombres_Utilisateurs_Actifs $Nombres_Utilisateurs_Actifs;
  100.         return $this;
  101.     }
  102.     public function getNombreDeConnexionMax(): ?int
  103.     {
  104.         return $this->Nombre_De_connexion_max;
  105.     }
  106.     public function setNombreDeConnexionMax(?int $Nombre_De_connexion_max): self
  107.     {
  108.         $this->Nombre_De_connexion_max $Nombre_De_connexion_max;
  109.         return $this;
  110.     }
  111. }