src/Entity/Mailtexte.php line 9
<?phpnamespace App\Entity;use App\Repository\MailtexteRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: MailtexteRepository::class)]class Mailtexte{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $metakey = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $betreff = null;#[ORM\Column(length: 5000, nullable: true)]private ?string $inhalt = null;#[ORM\Column(length: 255, nullable: true)]private ?string $absender = 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 getBetreff(): ?string{return $this->betreff;}public function setBetreff(?string $betreff): self{$this->betreff = $betreff;return $this;}public function getInhalt(): ?string{return $this->inhalt;}public function setInhalt(?string $inhalt): self{$this->inhalt = $inhalt;return $this;}public function getAbsender(): ?string{return $this->absender;}public function setAbsender(?string $absender): self{$this->absender = $absender;return $this;}public function getMandantenid(): ?string{return $this->mandantenid;}public function setMandantenid(?string $mandantenid): self{$this->mandantenid = $mandantenid;return $this;}}