src/Entity/Links.php line 9
<?phpnamespace App\Entity;use App\Repository\LinksRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: LinksRepository::class)]class Links{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255, nullable: true)]private ?string $produktcode = null;#[ORM\Column(length: 255, nullable: true)]private ?string $bezeichnung = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $link = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $datei = null;#[ORM\Column(length: 255, nullable: true)]private ?string $mandantenid = null;public function getId(): ?int{return $this->id;}public function getProduktcode(): ?string{return $this->produktcode;}public function setProduktcode(?string $produktcode): self{$this->produktcode = $produktcode;return $this;}public function getBezeichnung(): ?string{return $this->bezeichnung;}public function setBezeichnung(?string $bezeichnung): self{$this->bezeichnung = $bezeichnung;return $this;}public function getLink(): ?string{return $this->link;}public function setLink(?string $link): self{$this->link = $link;return $this;}public function getDatei(): ?string{return $this->datei;}public function setDatei(?string $datei): self{$this->datei = $datei;return $this;}public function getMandantenid(): ?string{return $this->mandantenid;}public function setMandantenid(?string $mandantenid): self{$this->mandantenid = $mandantenid;return $this;}}