src/Entity/Mandanten.php line 9

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MandantenRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. #[ORM\Entity(repositoryClassMandantenRepository::class)]
  6. class Mandanten
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column]
  11.     private ?int $id null;
  12.     #[ORM\Column(length1000nullabletrue)]
  13.     private ?string $wsurl null;
  14.     #[ORM\Column(length1000nullabletrue)]
  15.     private ?string $wsmandant null;
  16.     #[ORM\Column(length1000nullabletrue)]
  17.     private ?string $name null;
  18.     public function getId(): ?int
  19.     {
  20.         return $this->id;
  21.     }
  22.     public function getWsurl(): ?string
  23.     {
  24.         return $this->wsurl;
  25.     }
  26.     public function setWsurl(?string $wsurl): self
  27.     {
  28.         $this->wsurl $wsurl;
  29.         return $this;
  30.     }
  31.     public function getWsmandant(): ?string
  32.     {
  33.         return $this->wsmandant;
  34.     }
  35.     public function setWsmandant(?string $wsmandant): self
  36.     {
  37.         $this->wsmandant $wsmandant;
  38.         return $this;
  39.     }
  40.     public function getName(): ?string
  41.     {
  42.         return $this->name;
  43.     }
  44.     public function setName(?string $name): self
  45.     {
  46.         $this->name $name;
  47.         return $this;
  48.     }
  49. }