src/Entity/FormulaireThematique.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FormulaireThematiqueRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassFormulaireThematiqueRepository::class)]
  6. class FormulaireThematique
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(type'integer')]
  11.     private int $id;
  12.     #[ORM\Column(type'string'length255nullabletrue)]
  13.     private ?string $namenull;
  14.     #[ORM\Column(type'text'nullabletrue)]
  15.     private ?string $destinatairesnull;
  16.     #[ORM\Column(type'boolean'nullabletrue)]
  17.     private ?bool $bool_lenord;
  18.     #[ORM\Column(type'boolean'nullabletrue)]
  19.     private ?bool $bool_info;
  20.     #[ORM\Column(type'boolean'nullabletrue)]
  21.     private ?bool $bool_services;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private ?string $nameSmallnull;
  24.     public function getId(): ?int
  25.     {
  26.         return $this->id;
  27.     }
  28.     public function getName(): ?string
  29.     {
  30.         return $this->name;
  31.     }
  32.     public function setName(?string $name): self
  33.     {
  34.         $this->name $name;
  35.         return $this;
  36.     }
  37.     public function getDestinataires(): ?string
  38.     {
  39.         return $this->destinataires;
  40.     }
  41.     public function setDestinataires(?string $destinataires): self
  42.     {
  43.         $this->destinataires $destinataires;
  44.         return $this;
  45.     }
  46.     public function isBoolLenord(): ?bool
  47.     {
  48.         return $this->bool_lenord;
  49.     }
  50.     public function setBoolLenord(?bool $bool_lenord): self
  51.     {
  52.         $this->bool_lenord $bool_lenord;
  53.         return $this;
  54.     }
  55.     public function isBoolInfo(): ?bool
  56.     {
  57.         return $this->bool_info;
  58.     }
  59.     public function setBoolInfo(?bool $bool_info): self
  60.     {
  61.         $this->bool_info $bool_info;
  62.         return $this;
  63.     }
  64.     public function isBoolServices(): ?bool
  65.     {
  66.         return $this->bool_services;
  67.     }
  68.     public function setBoolServices(?bool $bool_services): self
  69.     {
  70.         $this->bool_services $bool_services;
  71.         return $this;
  72.     }
  73.     public function getNameSmall(): ?string
  74.     {
  75.         return $this->nameSmall;
  76.     }
  77.     public function setNameSmall(?string $nameSmall): self
  78.     {
  79.         $this->nameSmall $nameSmall;
  80.         return $this;
  81.     }
  82. }