<?php
namespace App\Entity;
use App\Repository\IndicateursRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=IndicateursRepository::class)
*/
class Indicateurs
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $VisitePJ;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $VisitesT;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Nombre_Reco_suivit;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Nombre_Recherche_moteur;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Nombres_acces_Thematiques;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Nombres_Utilisateurs_Actifs;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $Nombre_De_connexion_max;
public function getId(): ?int
{
return $this->id;
}
public function getVisitePJ(): ?int
{
return $this->VisitePJ;
}
public function setVisitePJ(?int $VisitePJ): self
{
$this->VisitePJ = $VisitePJ;
return $this;
}
public function getVisitesT(): ?int
{
return $this->VisitesT;
}
public function setVisitesT(?int $VisitesT): self
{
$this->VisitesT = $VisitesT;
return $this;
}
public function getNombreRecoSuivit(): ?int
{
return $this->Nombre_Reco_suivit;
}
public function setNombreRecoSuivit(?int $Nombre_Reco_suivit): self
{
$this->Nombre_Reco_suivit = $Nombre_Reco_suivit;
return $this;
}
public function getNombreRechercheMoteur(): ?int
{
return $this->Nombre_Recherche_moteur;
}
public function setNombreRechercheMoteur(?int $Nombre_Recherche_moteur): self
{
$this->Nombre_Recherche_moteur = $Nombre_Recherche_moteur;
return $this;
}
public function getNombresAccesThematiques(): ?int
{
return $this->Nombres_acces_Thematiques;
}
public function setNombresAccesThematiques(?int $Nombres_accès_Thematiques): self
{
$this->Nombres_acces_Thematiques = $Nombres_accès_Thematiques;
return $this;
}
public function getNombresUtilisateursActifs(): ?int
{
return $this->Nombres_Utilisateurs_Actifs;
}
public function setNombresUtilisateursActifs(?int $Nombres_Utilisateurs_Actifs): self
{
$this->Nombres_Utilisateurs_Actifs = $Nombres_Utilisateurs_Actifs;
return $this;
}
public function getNombreDeConnexionMax(): ?int
{
return $this->Nombre_De_connexion_max;
}
public function setNombreDeConnexionMax(?int $Nombre_De_connexion_max): self
{
$this->Nombre_De_connexion_max = $Nombre_De_connexion_max;
return $this;
}
}