src/Entity/VMatrix.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\VMatrixRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassVMatrixRepository::class)]
  6. class VMatrix
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255)]
  13.     private ?string $designation null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $type null;
  16.     #[ORM\ManyToOne(inversedBy'matrices')]
  17.     private ?Prubrique $rubrique null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?int $min null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?int $max null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?float $taux null;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?float $plafond null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?float $tauxACharge null;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getDesignation(): ?string
  33.     {
  34.         return $this->designation;
  35.     }
  36.     public function setDesignation(string $designation): self
  37.     {
  38.         $this->designation $designation;
  39.         return $this;
  40.     }
  41.     public function getType(): ?string
  42.     {
  43.         return $this->type;
  44.     }
  45.     public function setType(string $type): self
  46.     {
  47.         $this->type $type;
  48.         return $this;
  49.     }
  50.     public function getRubrique(): ?Prubrique
  51.     {
  52.         return $this->rubrique;
  53.     }
  54.     public function setRubrique(?Prubrique $rubrique): self
  55.     {
  56.         $this->rubrique $rubrique;
  57.         return $this;
  58.     }
  59.     public function getMin(): ?int
  60.     {
  61.         return $this->min;
  62.     }
  63.     public function setMin(?int $min): self
  64.     {
  65.         $this->min $min;
  66.         return $this;
  67.     }
  68.     public function getMax(): ?int
  69.     {
  70.         return $this->max;
  71.     }
  72.     public function setMax(?int $max): self
  73.     {
  74.         $this->max $max;
  75.         return $this;
  76.     }
  77.  
  78.     public function getTaux(): ?float
  79.     {
  80.         return $this->taux;
  81.     }
  82.     public function setTaux(?float $taux): self
  83.     {
  84.         $this->taux $taux;
  85.         return $this;
  86.     }
  87.     public function getPlafond(): ?float
  88.     {
  89.         return $this->plafond;
  90.     }
  91.     public function setPlafond(float $plafond): self
  92.     {
  93.         $this->plafond $plafond;
  94.         return $this;
  95.     }
  96.     public function getTauxACharge(): ?float
  97.     {
  98.         return $this->tauxACharge;
  99.     }
  100.     public function setTauxACharge(?float $tauxACharge): self
  101.     {
  102.         $this->tauxACharge $tauxACharge;
  103.         return $this;
  104.     }
  105.   
  106. }