src/Entity/Chiffres.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ChiffresRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassChiffresRepository::class)]
  6. class Chiffres
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $nom null;
  14.     #[ORM\Column]
  15.     private ?string $valeurs null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $nom2 null;
  18.     #[ORM\Column]
  19.     private ?string $valeurs2 null;
  20.     #[ORM\Column(length255)]
  21.     private ?string $nom3 null;
  22.     #[ORM\Column]
  23.     private ?string $valeurs3 null;
  24.     #[ORM\Column(length255)]
  25.     private ?string $nom4 null;
  26.     #[ORM\Column]
  27.     private ?string $valeurs4 null;
  28.     #[ORM\Column(length255)]
  29.     private ?string $nom5 null;
  30.     #[ORM\Column]
  31.     private ?string $valeurs5 null;
  32.     #[ORM\Column(length255)]
  33.     private ?string $nom6 null;
  34.     #[ORM\Column]
  35.     private ?string $valeurs6 null;
  36.     public function getId(): ?int
  37.     {
  38.         return $this->id;
  39.     }
  40.     public function getNom(): ?string
  41.     {
  42.         return $this->nom;
  43.     }
  44.     public function setNom(string $nom): self
  45.     {
  46.         $this->nom $nom;
  47.         return $this;
  48.     }
  49.     public function getValeurs(): ?string
  50.     {
  51.         return $this->valeurs;
  52.     }
  53.     public function setValeurs(string $valeurs): self
  54.     {
  55.         $this->valeurs $valeurs;
  56.         return $this;
  57.     }
  58.     public function getNom2(): ?string
  59.     {
  60.         return $this->nom2;
  61.     }
  62.     public function setNom2(string $nom2): self
  63.     {
  64.         $this->nom2 $nom2;
  65.         return $this;
  66.     }
  67.     public function getValeurs2(): ?string
  68.     {
  69.         return $this->valeurs2;
  70.     }
  71.     public function setValeurs2(string $valeurs2): self
  72.     {
  73.         $this->valeurs2 $valeurs2;
  74.         return $this;
  75.     }
  76.     public function getNom3(): ?string
  77.     {
  78.         return $this->nom3;
  79.     }
  80.     public function setNom3(string $nom3): self
  81.     {
  82.         $this->nom3 $nom3;
  83.         return $this;
  84.     }
  85.     public function getValeurs3(): ?string
  86.     {
  87.         return $this->valeurs3;
  88.     }
  89.     public function setValeurs3(string $valeurs3): self
  90.     {
  91.         $this->valeurs3 $valeurs3;
  92.         return $this;
  93.     }
  94.     public function getNom4(): ?string
  95.     {
  96.         return $this->nom4;
  97.     }
  98.     public function setNom4(string $nom4): self
  99.     {
  100.         $this->nom4 $nom4;
  101.         return $this;
  102.     }
  103.     public function getValeurs4(): ?string
  104.     {
  105.         return $this->valeurs4;
  106.     }
  107.     public function setValeurs4(string $valeurs4): self
  108.     {
  109.         $this->valeurs4 $valeurs4;
  110.         return $this;
  111.     }
  112.     public function getNom5(): ?string
  113.     {
  114.         return $this->nom5;
  115.     }
  116.     public function setNom5(string $nom5): self
  117.     {
  118.         $this->nom5 $nom5;
  119.         return $this;
  120.     }
  121.     public function getValeurs5(): ?string
  122.     {
  123.         return (int)$this->valeurs5;
  124.     }
  125.     public function setValeurs5(string $valeurs5): self
  126.     {
  127.         $this->valeurs5 $valeurs5;
  128.         return $this;
  129.     }
  130.     public function getNom6(): ?string
  131.     {
  132.         return $this->nom6;
  133.     }
  134.     public function setNom6(string $nom6): self
  135.     {
  136.         $this->nom6 $nom6;
  137.         return $this;
  138.     }
  139.     public function getValeurs6(): ?string
  140.     {
  141.         return $this->valeurs6;
  142.     }
  143.     public function setValeurs6(string $valeurs6): self
  144.     {
  145.         $this->valeurs6 $valeurs6;
  146.         return $this;
  147.     }
  148. }