src/Entity/HonoraireDetFixe.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HonoraireDetFixeRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassHonoraireDetFixeRepository::class)]
  7. class HonoraireDetFixe
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'honoraireDetFixes')]
  14.     private ?LContract $contract null;
  15.     #[ORM\Column(nullabletrue)]
  16.     private ?float $montant null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?float $montantDevise null;
  19.     #[ORM\Column(nullabletrue)]
  20.     private ?float $ir null;
  21.     #[ORM\Column(nullabletrue)]
  22.     private ?float $irDevise null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?float $brute null;
  25.     #[ORM\Column(nullabletrue)]
  26.     private ?float $bruteDevise null;
  27.     #[ORM\ManyToOne(inversedBy'honoraireDetFixes')]
  28.     private ?Users $userCreated null;
  29.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  30.     private ?\DateTimeInterface $created null;
  31.     #[ORM\Column(nullabletrue)]
  32.     private ?bool $active true;
  33.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $dateDebut null;
  35.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  36.     private ?\DateTimeInterface $dateFin null;
  37.     #[ORM\Column(nullabletrue)]
  38.     private ?float $chargeInstitutionelle null;
  39.     #[ORM\Column(nullabletrue)]
  40.     private ?float $primeCompensatoire null;
  41.     #[ORM\Column(nullabletrue)]
  42.     private ?float $base null;
  43.     public function getId(): ?int
  44.     {
  45.         return $this->id;
  46.     }
  47.     public function getContract(): ?LContract
  48.     {
  49.         return $this->contract;
  50.     }
  51.     public function setContract(?LContract $contract): static
  52.     {
  53.         $this->contract $contract;
  54.         return $this;
  55.     }
  56.     public function getMontant(): ?float
  57.     {
  58.         return $this->montant;
  59.     }
  60.     public function setMontant(?float $montant): static
  61.     {
  62.         $this->montant $montant;
  63.         return $this;
  64.     }
  65.     public function getMontantDevise(): ?float
  66.     {
  67.         return $this->montantDevise;
  68.     }
  69.     public function setMontantDevise(?float $montantDevise): static
  70.     {
  71.         $this->montantDevise $montantDevise;
  72.         return $this;
  73.     }
  74.     public function getIr(): ?float
  75.     {
  76.         return $this->ir;
  77.     }
  78.     public function setIr(?float $ir): static
  79.     {
  80.         $this->ir $ir;
  81.         return $this;
  82.     }
  83.     public function getIrDevise(): ?float
  84.     {
  85.         return $this->irDevise;
  86.     }
  87.     public function setIrDevise(?float $irDevise): static
  88.     {
  89.         $this->irDevise $irDevise;
  90.         return $this;
  91.     }
  92.     public function getBrute(): ?float
  93.     {
  94.         return $this->brute;
  95.     }
  96.     public function setBrute(?float $brute): static
  97.     {
  98.         $this->brute $brute;
  99.         return $this;
  100.     }
  101.     public function getBruteDevise(): ?float
  102.     {
  103.         return $this->bruteDevise;
  104.     }
  105.     public function setBruteDevise(?float $bruteDevise): static
  106.     {
  107.         $this->bruteDevise $bruteDevise;
  108.         return $this;
  109.     }
  110.     public function getUserCreated(): ?Users
  111.     {
  112.         return $this->userCreated;
  113.     }
  114.     public function setUserCreated(?Users $userCreated): static
  115.     {
  116.         $this->userCreated $userCreated;
  117.         return $this;
  118.     }
  119.     public function getCreated(): ?\DateTimeInterface
  120.     {
  121.         return $this->created;
  122.     }
  123.     public function setCreated(?\DateTimeInterface $created): static
  124.     {
  125.         $this->created $created;
  126.         return $this;
  127.     }
  128.     public function isActive(): ?bool
  129.     {
  130.         return $this->active;
  131.     }
  132.     public function setActive(?bool $active): static
  133.     {
  134.         $this->active $active;
  135.         return $this;
  136.     }
  137.     public function getDateDebut(): ?\DateTimeInterface
  138.     {
  139.         return $this->dateDebut;
  140.     }
  141.     public function setDateDebut(?\DateTimeInterface $dateDebut): static
  142.     {
  143.         $this->dateDebut $dateDebut;
  144.         return $this;
  145.     }
  146.     public function getDateFin(): ?\DateTimeInterface
  147.     {
  148.         return $this->dateFin;
  149.     }
  150.     public function setDateFin(?\DateTimeInterface $dateFin): static
  151.     {
  152.         $this->dateFin $dateFin;
  153.         return $this;
  154.     }
  155.     public function getChargeInstitutionelle(): ?float
  156.     {
  157.         return $this->chargeInstitutionelle;
  158.     }
  159.     public function setChargeInstitutionelle(?float $chargeInstitutionelle): static
  160.     {
  161.         $this->chargeInstitutionelle $chargeInstitutionelle;
  162.         return $this;
  163.     }
  164.     public function getPrimeCompensatoire(): ?float
  165.     {
  166.         return $this->primeCompensatoire;
  167.     }
  168.     public function setPrimeCompensatoire(?float $primeCompensatoire): static
  169.     {
  170.         $this->primeCompensatoire $primeCompensatoire;
  171.         return $this;
  172.     }
  173.     public function getBase(): ?float
  174.     {
  175.         return $this->base;
  176.     }
  177.     public function setBase(?float $base): static
  178.     {
  179.         $this->base $base;
  180.         return $this;
  181.     }
  182. }