src/Entity/TbulletinLg.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\TbulletinLgRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassTbulletinLgRepository::class)]
  6. class TbulletinLg
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne]
  13.     private ?Tbulletin $bulletin null;
  14.     #[ORM\ManyToOne(inversedBy'bulletinLgs')]
  15.     private ?Prubrique $rubrique null;
  16.     #[ORM\Column]
  17.     private ?float $montant null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?float $sens null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?bool $active true;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?float $montantDevise null;
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getBulletin(): ?Tbulletin
  29.     {
  30.         return $this->bulletin;
  31.     }
  32.     public function setBulletin(?Tbulletin $bulletin): self
  33.     {
  34.         $this->bulletin $bulletin;
  35.         return $this;
  36.     }
  37.     public function getRubrique(): ?Prubrique
  38.     {
  39.         return $this->rubrique;
  40.     }
  41.     public function setRubrique(?Prubrique $rubrique): self
  42.     {
  43.         $this->rubrique $rubrique;
  44.         return $this;
  45.     }
  46.     public function getMontant(): ?float
  47.     {
  48.         return $this->montant;
  49.     }
  50.     public function setMontant(float $montant): self
  51.     {
  52.         $this->montant round($montant2);
  53.         return $this;
  54.     }
  55.     public function getSens(): ?float
  56.     {
  57.         return $this->sens;
  58.     }
  59.     public function setSens(?float $sens): self
  60.     {
  61.         $this->sens $sens;
  62.         return $this;
  63.     }
  64.     public function isActive(): ?bool
  65.     {
  66.         return $this->active;
  67.     }
  68.     public function setActive(?bool $active): self
  69.     {
  70.         $this->active $active;
  71.         return $this;
  72.     }
  73.     public function getMontantDevise(): ?float
  74.     {
  75.         return $this->montantDevise;
  76.     }
  77.     public function setMontantDevise(?float $montantDevise): self
  78.     {
  79.         $this->montantDevise $montantDevise;
  80.         return $this;
  81.     }
  82.   
  83. }