src/Entity/LelementFixe.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Entity\Probleme;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use App\Repository\LelementFixeRepository;
  7. use Doctrine\Common\Collections\Collection;
  8. use Doctrine\Common\Collections\ArrayCollection;
  9. #[ORM\Entity(repositoryClassLelementFixeRepository::class)]
  10. class LelementFixe
  11. {
  12.     #[ORM\Id]
  13.     #[ORM\GeneratedValue]
  14.     #[ORM\Column]
  15.     private ?int $id null;
  16.     #[ORM\ManyToOne(inversedBy'lelementFixes')]
  17.     private ?Prubrique $rubrique null;
  18.     #[ORM\Column()]
  19.     private ?float $montant null;
  20.     #[ORM\ManyToOne(inversedBy'elementFixes')]
  21.     private ?LContract $contract null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $active true;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?float $sens null;
  26.     #[ORM\OneToMany(mappedBy'elementFixe'targetEntityProbleme::class)]
  27.     private Collection $problemes;
  28.     #[ORM\ManyToOne]
  29.     private ?Users $userCreated null;
  30.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  31.     private ?\DateTimeInterface $created null;
  32.     public function __construct()
  33.     {
  34.         $this->problemes = new ArrayCollection();
  35.         $this->created = new \DateTime();
  36.     }
  37.    
  38.     public function getId(): ?int
  39.     {
  40.         return $this->id;
  41.     }
  42.   
  43.     public function getRubrique(): ?Prubrique
  44.     {
  45.         return $this->rubrique;
  46.     }
  47.     public function setRubrique(?Prubrique $rubrique): self
  48.     {
  49.         $this->rubrique $rubrique;
  50.         return $this;
  51.     }
  52.     public function getMontant(): ?float
  53.     {
  54.         return $this->montant;
  55.     }
  56.     public function setMontant(float $Montant): self
  57.     {
  58.         $this->montant $Montant;
  59.         return $this;
  60.     }
  61.     public function getContract(): ?LContract
  62.     {
  63.         return $this->contract;
  64.     }
  65.     public function setContract(?LContract $contract): self
  66.     {
  67.         $this->contract $contract;
  68.         return $this;
  69.     }
  70.     public function isActive(): ?bool
  71.     {
  72.         return $this->active;
  73.     }
  74.     public function setActive(?bool $active): self
  75.     {
  76.         $this->active $active;
  77.         return $this;
  78.     }
  79.     public function getSens(): ?float
  80.     {
  81.         return $this->sens;
  82.     }
  83.     public function setSens(?float $sens): self
  84.     {
  85.         $this->sens $sens;
  86.         return $this;
  87.     }
  88.     /**
  89.      * @return Collection<int, Probleme>
  90.      */
  91.     public function getProblemes(): Collection
  92.     {
  93.         return $this->problemes;
  94.     }
  95.     public function addProbleme(Probleme $probleme): self
  96.     {
  97.         if (!$this->problemes->contains($probleme)) {
  98.             $this->problemes->add($probleme);
  99.             $probleme->setElementFixe($this);
  100.         }
  101.         return $this;
  102.     }
  103.     public function removeProbleme(Probleme $probleme): self
  104.     {
  105.         if ($this->problemes->removeElement($probleme)) {
  106.             // set the owning side to null (unless already changed)
  107.             if ($probleme->getElementFixe() === $this) {
  108.                 $probleme->setElementFixe(null);
  109.             }
  110.         }
  111.         return $this;
  112.     }
  113.     public function getUserCreated(): ?Users
  114.     {
  115.         return $this->userCreated;
  116.     }
  117.     public function setUserCreated(?Users $userCreated): self
  118.     {
  119.         $this->userCreated $userCreated;
  120.         return $this;
  121.     }
  122.     public function getCreated(): ?\DateTimeInterface
  123.     {
  124.         return $this->created;
  125.     }
  126.     public function setCreated(?\DateTimeInterface $created): self
  127.     {
  128.         $this->created $created;
  129.         return $this;
  130.     }
  131. }