src/Entity/Auswahllisten.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\AuswahllistenRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassAuswahllistenRepository::class)]
  6. class Auswahllisten
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $metakey null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $metavalue null;
  16.     #[ORM\Column(length255)]
  17.     private ?string $type null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?bool $active null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $mandantenid null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getMetakey(): ?string
  27.     {
  28.         return $this->metakey;
  29.     }
  30.     public function setMetakey(?string $metakey): self
  31.     {
  32.         $this->metakey $metakey;
  33.         return $this;
  34.     }
  35.     public function getMetavalue(): ?string
  36.     {
  37.         return $this->metavalue;
  38.     }
  39.     public function setMetavalue(?string $metavalue): self
  40.     {
  41.         $this->metavalue $metavalue;
  42.         return $this;
  43.     }
  44.     public function getType(): ?string
  45.     {
  46.         return $this->type;
  47.     }
  48.     public function setType(string $type): self
  49.     {
  50.         $this->type $type;
  51.         return $this;
  52.     }
  53.     public function isActive(): ?bool
  54.     {
  55.         return $this->active;
  56.     }
  57.     public function setActive(?bool $active): self
  58.     {
  59.         $this->active $active;
  60.         return $this;
  61.     }
  62.     public function getMandantenid(): ?string
  63.     {
  64.         return $this->mandantenid;
  65.     }
  66.     public function setMandantenid(?string $mandantenid): self
  67.     {
  68.         $this->mandantenid $mandantenid;
  69.         return $this;
  70.     }
  71. }