src/Entity/Settings.php line 9
<?php
namespace App\Entity;
use App\Repository\SettingsRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: SettingsRepository::class)]
class Settings
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\Column(length: 255)]
private ?string $metakey = null;
#[ORM\Column(length: 2500, nullable: true)]
private ?string $metavalue = null;
#[ORM\Column(length: 100,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 getMandantenid(): ?string
{
return $this->mandantenid;
}
public function setMandantenid(?string $mandantenid): self
{
$this->mandantenid = $mandantenid;
return $this;
}
}