src/Entity/InjectRemuneration.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\InjectRemunerationRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassInjectRemunerationRepository::class)]
  6. class InjectRemuneration
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $designation null;
  14.     #[ORM\ManyToOne(inversedBy'injectRemunerations')]
  15.     private ?PDossier $dossier null;
  16.     #[ORM\ManyToOne(inversedBy'injectRemunerations')]
  17.     private ?Prubrique $rubrique null;
  18.     #[ORM\ManyToOne(inversedBy'injectRemunerations')]
  19.     private ?Periode $periode null;
  20.     #[ORM\Column]
  21.     private ?bool $active null;
  22.     #[ORM\ManyToOne(inversedBy'injectRemunerations')]
  23.     private ?PDevise $devise null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $type null;
  26.     public function getId(): ?int
  27.     {
  28.         return $this->id;
  29.     }
  30.     public function getDesignation(): ?string
  31.     {
  32.         return $this->designation;
  33.     }
  34.     public function setDesignation(?string $designation): static
  35.     {
  36.         $this->designation $designation;
  37.         return $this;
  38.     }
  39.     public function getDossier(): ?PDossier
  40.     {
  41.         return $this->dossier;
  42.     }
  43.     public function setDossier(?PDossier $dossier): static
  44.     {
  45.         $this->dossier $dossier;
  46.         return $this;
  47.     }
  48.     public function getRubrique(): ?Prubrique
  49.     {
  50.         return $this->rubrique;
  51.     }
  52.     public function setRubrique(?Prubrique $rubrique): static
  53.     {
  54.         $this->rubrique $rubrique;
  55.         return $this;
  56.     }
  57.     public function getPeriode(): ?Periode
  58.     {
  59.         return $this->periode;
  60.     }
  61.     public function setPeriode(?Periode $periode): static
  62.     {
  63.         $this->periode $periode;
  64.         return $this;
  65.     }
  66.     public function isActive(): ?bool
  67.     {
  68.         return $this->active;
  69.     }
  70.     public function setActive(bool $active): static
  71.     {
  72.         $this->active $active;
  73.         return $this;
  74.     }
  75.     public function getDevise(): ?PDevise
  76.     {
  77.         return $this->devise;
  78.     }
  79.     public function setDevise(?PDevise $devise): static
  80.     {
  81.         $this->devise $devise;
  82.         return $this;
  83.     }
  84.     public function getType(): ?string
  85.     {
  86.         return $this->type;
  87.     }
  88.     public function setType(string $type): static
  89.     {
  90.         $this->type $type;
  91.         return $this;
  92.     }
  93. }