src/Entity/PPaiement.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\PPaiementRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassPPaiementRepository::class)]
  6. class PPaiement
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $designation null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $abreviation null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?bool $active true;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getDesignation(): ?string
  23.     {
  24.         return $this->designation;
  25.     }
  26.     public function setDesignation(?string $designation): self
  27.     {
  28.         $this->designation $designation;
  29.         return $this;
  30.     }
  31.     public function getAbreviation(): ?string
  32.     {
  33.         return $this->abreviation;
  34.     }
  35.     public function setAbreviation(?string $abreviation): self
  36.     {
  37.         $this->abreviation $abreviation;
  38.         return $this;
  39.     }
  40.     public function isActive(): ?bool
  41.     {
  42.         return $this->active;
  43.     }
  44.     public function setActive(?bool $active): self
  45.     {
  46.         $this->active $active;
  47.         return $this;
  48.     }
  49. }