src/Entity/Links.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\LinksRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassLinksRepository::class)]
  6. class Links
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length255nullabletrue)]
  13.     private ?string $produktcode null;
  14.     #[ORM\Column(length255nullabletrue)]
  15.     private ?string $bezeichnung null;
  16.     #[ORM\Column(length1000nullabletrue)]
  17.     private ?string $link null;
  18.     #[ORM\Column(length1000nullabletrue)]
  19.     private ?string $datei null;
  20.     #[ORM\Column(length255nullabletrue)]
  21.     private ?string $mandantenid null;
  22.     public function getId(): ?int
  23.     {
  24.         return $this->id;
  25.     }
  26.     public function getProduktcode(): ?string
  27.     {
  28.         return $this->produktcode;
  29.     }
  30.     public function setProduktcode(?string $produktcode): self
  31.     {
  32.         $this->produktcode $produktcode;
  33.         return $this;
  34.     }
  35.     public function getBezeichnung(): ?string
  36.     {
  37.         return $this->bezeichnung;
  38.     }
  39.     public function setBezeichnung(?string $bezeichnung): self
  40.     {
  41.         $this->bezeichnung $bezeichnung;
  42.         return $this;
  43.     }
  44.     public function getLink(): ?string
  45.     {
  46.         return $this->link;
  47.     }
  48.     public function setLink(?string $link): self
  49.     {
  50.         $this->link $link;
  51.         return $this;
  52.     }
  53.     public function getDatei(): ?string
  54.     {
  55.         return $this->datei;
  56.     }
  57.     public function setDatei(?string $datei): self
  58.     {
  59.         $this->datei $datei;
  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. }