src/Entity/TypRemuneration.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TypRemunerationRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassTypRemunerationRepository::class)]
  8. class TypRemuneration
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255nullabletruename'sous_mode')]
  15.     private ?string $designation null;
  16.     #[ORM\OneToMany(mappedBy'type'targetEntityPnatureContract::class)]
  17.     private Collection $pnatureContracts;
  18.     #[ORM\Column(length70nullabletrue)]
  19.     private ?string $abreviation null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?bool $cnss null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $cimr null;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?bool $ir null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $observation null;
  28.     #[ORM\ManyToOne]
  29.     private ?ParamGlobalDet $natureContribution null;
  30.     #[ORM\ManyToOne]
  31.     private ?ParamGlobalDet $parametreContribution null;
  32.     #[ORM\Column(length255nullabletrue)]
  33.     private ?string $mode null;
  34.     public function __construct()
  35.     {
  36.         $this->pnatureContracts = new ArrayCollection();
  37.     }
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.     public function getDesignation(): ?string
  43.     {
  44.         return $this->designation;
  45.     }
  46.     public function setDesignation(?string $designation): static
  47.     {
  48.         $this->designation $designation;
  49.         return $this;
  50.     }
  51.     /**
  52.      * @return Collection<int, PnatureContract>
  53.      */
  54.     public function getPnatureContracts(): Collection
  55.     {
  56.         return $this->pnatureContracts;
  57.     }
  58.     public function addPnatureContract(PnatureContract $pnatureContract): static
  59.     {
  60.         if (!$this->pnatureContracts->contains($pnatureContract)) {
  61.             $this->pnatureContracts->add($pnatureContract);
  62.             $pnatureContract->setType($this);
  63.         }
  64.         return $this;
  65.     }
  66.     public function removePnatureContract(PnatureContract $pnatureContract): static
  67.     {
  68.         if ($this->pnatureContracts->removeElement($pnatureContract)) {
  69.             // set the owning side to null (unless already changed)
  70.             if ($pnatureContract->getType() === $this) {
  71.                 $pnatureContract->setType(null);
  72.             }
  73.         }
  74.         return $this;
  75.     }
  76.     public function getAbreviation(): ?string
  77.     {
  78.         return $this->abreviation;
  79.     }
  80.     public function setAbreviation(?string $abreviation): self
  81.     {
  82.         $this->abreviation $abreviation;
  83.         return $this;
  84.     }
  85.     public function isCnss(): ?bool
  86.     {
  87.         return $this->cnss;
  88.     }
  89.     public function setCnss(?bool $cnss): static
  90.     {
  91.         $this->cnss $cnss;
  92.         return $this;
  93.     }
  94.     public function isCimr(): ?bool
  95.     {
  96.         return $this->cimr;
  97.     }
  98.     public function setCimr(?bool $cimr): static
  99.     {
  100.         $this->cimr $cimr;
  101.         return $this;
  102.     }
  103.     public function isIr(): ?bool
  104.     {
  105.         return $this->ir;
  106.     }
  107.     public function setIr(?bool $ir): static
  108.     {
  109.         $this->ir $ir;
  110.         return $this;
  111.     }
  112.     public function getObservation(): ?string
  113.     {
  114.         return $this->observation;
  115.     }
  116.     public function setObservation(?string $observation): static
  117.     {
  118.         $this->observation $observation;
  119.         return $this;
  120.     }
  121.     public function getNatureContribution(): ?ParamGlobalDet
  122.     {
  123.         return $this->natureContribution;
  124.     }
  125.     public function setNatureContribution(?ParamGlobalDet $natureContribution): static
  126.     {
  127.         $this->natureContribution $natureContribution;
  128.         return $this;
  129.     }
  130.     public function getParametreContribution(): ?ParamGlobalDet
  131.     {
  132.         return $this->parametreContribution;
  133.     }
  134.     public function setParametreContribution(?ParamGlobalDet $parametreContribution): static
  135.     {
  136.         $this->parametreContribution $parametreContribution;
  137.         return $this;
  138.     }
  139.     public function getMode(): ?string
  140.     {
  141.         return $this->mode;
  142.     }
  143.     public function setMode(?string $mode): static
  144.     {
  145.         $this->mode $mode;
  146.         return $this;
  147.     }
  148. }