src/Entity/Mandanten.php line 9
<?phpnamespace App\Entity;use App\Repository\MandantenRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: MandantenRepository::class)]class Mandanten{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $wsurl = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $wsmandant = null;#[ORM\Column(length: 1000, nullable: true)]private ?string $name = null;public function getId(): ?int{return $this->id;}public function getWsurl(): ?string{return $this->wsurl;}public function setWsurl(?string $wsurl): self{$this->wsurl = $wsurl;return $this;}public function getWsmandant(): ?string{return $this->wsmandant;}public function setWsmandant(?string $wsmandant): self{$this->wsmandant = $wsmandant;return $this;}public function getName(): ?string{return $this->name;}public function setName(?string $name): self{$this->name = $name;return $this;}}