src/Entity/BCMix.php line 9
<?php
namespace App\Entity;
use App\Repository\BCMixRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: BCMixRepository::class)]
class BCMix
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 100)]
private ?string $country = null;
#[ORM\Column]
private ?float $coefficient = null;
#[ORM\Column]
private ?int $incertitude = null;
#[ORM\Column(length: 255)]
private ?string $source = null;
#[ORM\Column(length: 10)]
private ?string $type = null;
public function getId(): ?int
{
return $this->id;
}
public function getCountry(): ?string
{
return $this->country;
}
public function setCountry(string $country): self
{
$this->country = $country;
return $this;
}
public function getCoefficient(): ?float
{
return $this->coefficient;
}
public function setCoefficient(float $coefficient): self
{
$this->coefficient = $coefficient;
return $this;
}
public function getIncertitude(): ?int
{
return $this->incertitude;
}
public function setIncertitude(int $incertitude): self
{
$this->incertitude = $incertitude;
return $this;
}
public function getSource(): ?string
{
return $this->source;
}
public function setSource(string $source): self
{
$this->source = $source;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(string $type): self
{
$this->type = $type;
return $this;
}
}