src/Entity/PnatureContract.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PnatureContractRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPnatureContractRepository::class)]
  8. class PnatureContract
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(length255)]
  15.     private ?string $code null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $designation null;
  18.     #[ORM\Column]
  19.     private ?int $active null;
  20.     #[ORM\Column(length50)]
  21.     private ?string $Abreviation null;
  22.     #[ORM\OneToMany(mappedBy'nature_contarct'targetEntityPdureeContract::class)]
  23.     private Collection $pdureeContracts;
  24.     #[ORM\OneToMany(mappedBy'pnatureContract'targetEntityLContract::class)]
  25.     private Collection $contract_id;
  26.     #[ORM\OneToMany(mappedBy'natureContract'targetEntityPBordereau::class)]
  27.     private Collection $bordereau;
  28.     #[ORM\OneToMany(mappedBy'natureContract'targetEntityPCompteComptable::class)]
  29.     private Collection $compteComptables;
  30.     #[ORM\Column(nullabletrue)]
  31.     private ?int $partenaireId null;
  32.     #[ORM\ManyToOne(inversedBy'pnatureContracts')]
  33.     private ?TypRemuneration $type null;
  34.     #[ORM\OneToMany(mappedBy'naturecontrat'targetEntityLnaturecontratBareme::class)]
  35.     private Collection $baremes;
  36.     #[ORM\Column(nullabletrue)]
  37.     private ?float $TauxIr null;
  38.     #[ORM\Column(nullabletrue)]
  39.     private ?float $abattement null;
  40.     public function __construct()
  41.     {
  42.         $this->pdureeContracts = new ArrayCollection();
  43.         $this->contract_id = new ArrayCollection();
  44.         $this->bordereau = new ArrayCollection();
  45.         $this->compteComptables = new ArrayCollection();
  46.         $this->baremes = new ArrayCollection();
  47.     }
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getNatureCabId(): ?int
  53.     {
  54.         return $this->nature_cab_id;
  55.     }
  56.     public function setNatureCabId(int $nature_cab_id): self
  57.     {
  58.         $this->nature_cab_id $nature_cab_id;
  59.         return $this;
  60.     }
  61.     public function getCode(): ?string
  62.     {
  63.         return $this->code;
  64.     }
  65.     public function setCode(string $code): self
  66.     {
  67.         $this->code $code;
  68.         return $this;
  69.     }
  70.     public function getDesignation(): ?string
  71.     {
  72.         return $this->designation;
  73.     }
  74.     public function setDesignation(string $Designation): self
  75.     {
  76.         $this->designation $Designation;
  77.         return $this;
  78.     }
  79.     public function getActive(): ?int
  80.     {
  81.         return $this->active;
  82.     }
  83.     public function setActive(int $active): self
  84.     {
  85.         $this->active $active;
  86.         return $this;
  87.     }
  88.     public function getAbreviation(): ?string
  89.     {
  90.         return $this->Abreviation;
  91.     }
  92.     public function setAbreviation(string $Abreviation): self
  93.     {
  94.         $this->Abreviation $Abreviation;
  95.         return $this;
  96.     }
  97.     /**
  98.      * @return Collection<int, PdureeContract>
  99.      */
  100.     public function getPdureeContracts(): Collection
  101.     {
  102.         return $this->pdureeContracts;
  103.     }
  104.     public function addPdureeContract(PdureeContract $pdureeContract): self
  105.     {
  106.         if (!$this->pdureeContracts->contains($pdureeContract)) {
  107.             $this->pdureeContracts->add($pdureeContract);
  108.             $pdureeContract->setNatureContarct($this);
  109.         }
  110.         return $this;
  111.     }
  112.     public function removePdureeContract(PdureeContract $pdureeContract): self
  113.     {
  114.         if ($this->pdureeContracts->removeElement($pdureeContract)) {
  115.             // set the owning side to null (unless already changed)
  116.             if ($pdureeContract->getNatureContarct() === $this) {
  117.                 $pdureeContract->setNatureContarct(null);
  118.             }
  119.         }
  120.         return $this;
  121.     }
  122.     /**
  123.      * @return Collection<int, LContract>
  124.      */
  125.     public function getContractId(): Collection
  126.     {
  127.         return $this->contract_id;
  128.     }
  129.     public function addContractId(LContract $contractId): self
  130.     {
  131.         if (!$this->contract_id->contains($contractId)) {
  132.             $this->contract_id->add($contractId);
  133.             $contractId->setPnatureContract($this);
  134.         }
  135.         return $this;
  136.     }
  137.     public function removeContractId(LContract $contractId): self
  138.     {
  139.         if ($this->contract_id->removeElement($contractId)) {
  140.             // set the owning side to null (unless already changed)
  141.             if ($contractId->getPnatureContract() === $this) {
  142.                 $contractId->setPnatureContract(null);
  143.             }
  144.         }
  145.         return $this;
  146.     }
  147.     /**
  148.      * @return Collection<int, PBordereau>
  149.      */
  150.     public function getBordereau(): Collection
  151.     {
  152.         return $this->bordereau;
  153.     }
  154.     public function addBordereau(PBordereau $bordereau): self
  155.     {
  156.         if (!$this->bordereau->contains($bordereau)) {
  157.             $this->bordereau->add($bordereau);
  158.             $bordereau->setNatureContract($this);
  159.         }
  160.         return $this;
  161.     }
  162.     public function removeBordereau(PBordereau $bordereau): self
  163.     {
  164.         if ($this->bordereau->removeElement($bordereau)) {
  165.             // set the owning side to null (unless already changed)
  166.             if ($bordereau->getNatureContract() === $this) {
  167.                 $bordereau->setNatureContract(null);
  168.             }
  169.         }
  170.         return $this;
  171.     }
  172.     /**
  173.      * @return Collection<int, PCompteComptable>
  174.      */
  175.     public function getCompteComptables(): Collection
  176.     {
  177.         return $this->compteComptables;
  178.     }
  179.     public function addCompteComptable(PCompteComptable $compteComptable): self
  180.     {
  181.         if (!$this->compteComptables->contains($compteComptable)) {
  182.             $this->compteComptables->add($compteComptable);
  183.             $compteComptable->setNatureContract($this);
  184.         }
  185.         return $this;
  186.     }
  187.     public function removeCompteComptable(PCompteComptable $compteComptable): self
  188.     {
  189.         if ($this->compteComptables->removeElement($compteComptable)) {
  190.             // set the owning side to null (unless already changed)
  191.             if ($compteComptable->getNatureContract() === $this) {
  192.                 $compteComptable->setNatureContract(null);
  193.             }
  194.         }
  195.         return $this;
  196.     }
  197.     public function getPartenaireId(): ?int
  198.     {
  199.         return $this->partenaireId;
  200.     }
  201.     public function setPartenaireId(?int $partenaireId): self
  202.     {
  203.         $this->partenaireId $partenaireId;
  204.         return $this;
  205.     }
  206.     public function getType(): ?TypRemuneration
  207.     {
  208.         return $this->type;
  209.     }
  210.     public function setType(?TypRemuneration $type): static
  211.     {
  212.         $this->type $type;
  213.         return $this;
  214.     }
  215.     /**
  216.      * @return Collection<int, LnaturecontratBareme>
  217.      */
  218.     public function getBaremes(): Collection
  219.     {
  220.         return $this->baremes;
  221.     }
  222.     public function addBareme(LnaturecontratBareme $bareme): self
  223.     {
  224.         if (!$this->baremes->contains($bareme)) {
  225.             $this->baremes->add($bareme);
  226.             $bareme->setNaturecontrat($this);
  227.         }
  228.         return $this;
  229.     }
  230.     public function removeBareme(LnaturecontratBareme $bareme): self
  231.     {
  232.         if ($this->baremes->removeElement($bareme)) {
  233.             // set the owning side to null (unless already changed)
  234.             if ($bareme->getNaturecontrat() === $this) {
  235.                 $bareme->setNaturecontrat(null);
  236.             }
  237.         }
  238.         return $this;
  239.     }
  240.     public function getTauxIr(): ?float
  241.     {
  242.         return $this->TauxIr;
  243.     }
  244.     public function setTauxIr(?float $TauxIr): static
  245.     {
  246.         $this->TauxIr $TauxIr;
  247.         return $this;
  248.     }
  249.     public function getAbattement(): ?float
  250.     {
  251.         return $this->abattement;
  252.     }
  253.     public function setAbattement(?float $abattement): static
  254.     {
  255.         $this->abattement $abattement;
  256.         return $this;
  257.     }
  258. }