<?phpnamespace App\Entity;use ApiPlatform\Metadata\ApiResource;use App\Repository\LepDiiaDovKonsultantRepository;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: LepDiiaDovKonsultantRepository::class)]#[ApiResource]class LepDiiaDovKonsultant{ #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; #[ORM\Column] private ?int $cokId = null; #[ORM\Column(length: 20)] private ?string $tabelid = null; #[ORM\Column(length: 50)] private ?string $family = null; #[ORM\Column(length: 50)] private ?string $name = null; #[ORM\Column(length: 50)] private ?string $fname = null; #[ORM\Column(length: 50)] private ?string $login = null; #[ORM\Column(length: 100)] private ?string $ppp = null; #[ORM\Column(length: 10)] private ?string $active = null; public function getId(): ?int { return $this->id; } public function getCokId(): ?int { return $this->cokId; } public function setCokId(int $cokId): self { $this->cokId = $cokId; return $this; } public function getTabelid(): ?string { return $this->tabelid; } public function setTabelid(string $tabelid): self { $this->tabelid = $tabelid; return $this; } public function getFamily(): ?string { return $this->family; } public function setFamily(string $family): self { $this->family = $family; return $this; } public function getName(): ?string { return $this->name; } public function setName(string $name): self { $this->name = $name; return $this; } public function getFname(): ?string { return $this->fname; } public function setFname(string $fname): self { $this->fname = $fname; return $this; } public function getLogin(): ?string { return $this->login; } public function setLogin(string $login): self { $this->login = $login; return $this; } public function getPpp(): ?string { return $this->ppp; } public function setPpp(string $ppp): self { $this->ppp = $ppp; return $this; } public function getActive(): ?string { return $this->active; } public function setActive(string $active): self { $this->active = $active; return $this; }}