src/Entity/JournalBulletinLg.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\JournalBulletinLgRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassJournalBulletinLgRepository::class)]
  6. class JournalBulletinLg
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\ManyToOne(inversedBy'journalBulletinLgs')]
  13.     private ?Tbulletin $bulletin null;
  14.     #[ORM\ManyToOne(inversedBy'journalBulletinLgs')]
  15.     private ?Prubrique $rubrique null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?float $montant null;
  18.     #[ORM\Column(length255nullabletrue)]
  19.     private ?string $codeComptable null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?int $qte null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $active true;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $type null;
  26.     #[ORM\Column(length255nullabletrue)]
  27.     private ?string $sens null;
  28.     #[ORM\Column(nullabletrue)]
  29.     private ?float $montantDevise null;
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getBulletin(): ?Tbulletin
  35.     {
  36.         return $this->bulletin;
  37.     }
  38.     public function setBulletin(?Tbulletin $bulletin): self
  39.     {
  40.         $this->bulletin $bulletin;
  41.         return $this;
  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 getCodeComptable(): ?string
  62.     {
  63.         return $this->codeComptable;
  64.     }
  65.     public function setCodeComptable(?string $codeComptable): self
  66.     {
  67.         $this->codeComptable $codeComptable;
  68.         return $this;
  69.     }
  70.     public function getQte(): ?int
  71.     {
  72.         return $this->qte;
  73.     }
  74.     public function setQte(?int $qte): self
  75.     {
  76.         $this->qte $qte;
  77.         return $this;
  78.     }
  79.     public function isActive(): ?bool
  80.     {
  81.         return $this->active;
  82.     }
  83.     public function setActive(?bool $active): self
  84.     {
  85.         $this->active $active;
  86.         return $this;
  87.     }
  88.     public function getType(): ?string
  89.     {
  90.         return $this->type;
  91.     }
  92.     public function setType(?string $type): self
  93.     {
  94.         $this->type $type;
  95.         return $this;
  96.     }
  97.     public function getSens(): ?string
  98.     {
  99.         return $this->sens;
  100.     }
  101.     public function setSens(?string $sens): self
  102.     {
  103.         $this->sens $sens;
  104.         return $this;
  105.     }
  106.     public function getMontantDevise(): ?float
  107.     {
  108.         return $this->montantDevise;
  109.     }
  110.     public function setMontantDevise(?float $montantDevise): static
  111.     {
  112.         $this->montantDevise $montantDevise;
  113.         return $this;
  114.     }
  115. }