src/Entity/Auswahllisten.php line 9
<?php
namespace App\Entity;
use App\Repository\AuswahllistenRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: AuswahllistenRepository::class)]
class Auswahllisten
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $metakey = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $metavalue = null;
#[ORM\Column(length: 255)]
private ?string $type = null;
#[ORM\Column(nullable: true)]
private ?bool $active = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mandantenid = null;
public function getId(): ?int
{
return $this->id;
}
public function getMetakey(): ?string
{
return $this->metakey;
}
public function setMetakey(?string $metakey): self
{
$this->metakey = $metakey;
return $this;
}
public function getMetavalue(): ?string
{
return $this->metavalue;
}
public function setMetavalue(?string $metavalue): self
{
$this->metavalue = $metavalue;
return $this;
}
public function getType(): ?string
{
return $this->type;
}
public function setType(string $type): self
{
$this->type = $type;
return $this;
}
public function isActive(): ?bool
{
return $this->active;
}
public function setActive(?bool $active): self
{
$this->active = $active;
return $this;
}
public function getMandantenid(): ?string
{
return $this->mandantenid;
}
public function setMandantenid(?string $mandantenid): self
{
$this->mandantenid = $mandantenid;
return $this;
}
}