src/Entity/UserIndicateur.php line 10
<?phpnamespace App\Entity;use App\Repository\UserIndicateurRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: UserIndicateurRepository::class)]class UserIndicateur{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(nullable: true)]private ?float $mb = null;#[ORM\Column(nullable: true)]private ?float $dej = null;#[ORM\Column(nullable: true)]private ?float $cejr = null;#[ORM\Column(type: Types::SMALLINT, nullable: true)]private ?int $fcr = null;#[ORM\Column(nullable: true)]private ?float $fcm = null;#[ORM\Column(nullable: true)]private ?float $fcrv = null;#[ORM\OneToOne(cascade: ['persist', 'remove'])]private ?User $user = null;#[ORM\Column(type: Types::SMALLINT, nullable: true)]private ?int $nap = null;#[ORM\Column(nullable: true)]private ?int $fr = null;#[ORM\Column(nullable: true)]private ?float $vo2max = null;public function getId(): ?int{return $this->id;}public function getMb(): ?float{return $this->mb;}public function setMb(?float $mb): static{$this->mb = $mb;return $this;}public function getDej(): ?float{return $this->dej;}public function setDej(?float $dej): static{$this->dej = $dej;return $this;}public function getCejr(): ?float{return $this->cejr;}public function setCejr(?float $cejr): static{$this->cejr = $cejr;return $this;}public function getFcr(): ?int{return $this->fcr;}public function setFcr(?int $fcr): static{$this->fcr = $fcr;return $this;}public function getFcm(): ?float{return $this->fcm;}public function setFcm(?float $fcm): static{$this->fcm = $fcm;return $this;}public function getFcrv(): ?float{return $this->fcrv;}public function setFcrv(?float $fcrv): static{$this->fcrv = $fcrv;return $this;}public function getUser(): ?User{return $this->user;}public function setUser(?User $user): static{$this->user = $user;return $this;}public function getNap(): ?int{return $this->nap;}public function setNap(?int $nap): static{$this->nap = $nap;return $this;}public function getFr(): ?int{return $this->fr;}public function setFr(?int $fr): static{$this->fr = $fr;return $this;}public function getVo2max(): ?float{return $this->vo2max;}public function setVo2max(?float $vo2max): static{$this->vo2max = $vo2max;return $this;}}