<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass="App\Repository\NotationRepository")
*/
class Notation
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="decimal", precision=5, scale=2, nullable=true)
*/
private $globalNote;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $numberNotation;
/**
* @ORM\Column(type="decimal", precision=5, scale=2, nullable=true)
*/
private $totalNotation;
public function getId(): ?int
{
return $this->id;
}
public function getGlobalNote(): ?string
{
return $this->globalNote;
}
public function setGlobalNote(?string $globalNote): self
{
$this->globalNote = $globalNote;
return $this;
}
public function getNumberNotation(): ?int
{
return $this->numberNotation;
}
public function setNumberNotation(?int $numberNotation): self
{
$this->numberNotation = $numberNotation;
return $this;
}
public function getTotalNotation(): ?string
{
return $this->totalNotation;
}
public function setTotalNotation(?string $totalNotation): self
{
$this->totalNotation = $totalNotation;
return $this;
}
}