src/Entity/ContractNetTheorique.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContractNetTheoriqueRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassContractNetTheoriqueRepository::class)]
  6. class ContractNetTheorique
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     
  13.     #[ORM\ManyToOne]
  14.     private ?Periode $periode null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?float $montant null;
  17.     #[ORM\ManyToOne(inversedBy'contractNetTheoriques')]
  18.     private ?Tbulletin $bulletin null;
  19.     public function getId(): ?int
  20.     {
  21.         return $this->id;
  22.     }
  23.     
  24.     public function getPeriode(): ?Periode
  25.     {
  26.         return $this->periode;
  27.     }
  28.     public function setPeriode(?Periode $periode): static
  29.     {
  30.         $this->periode $periode;
  31.         return $this;
  32.     }
  33.     public function getMontant(): ?float
  34.     {
  35.         return $this->montant;
  36.     }
  37.     public function setMontant(?float $montant): static
  38.     {
  39.         $this->montant $montant;
  40.         return $this;
  41.     }
  42.     public function getBulletin(): ?Tbulletin
  43.     {
  44.         return $this->bulletin;
  45.     }
  46.     public function setBulletin(?Tbulletin $bulletin): static
  47.     {
  48.         $this->bulletin $bulletin;
  49.         return $this;
  50.     }
  51. }