src/Entity/LepDiiaDovKonsultant.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\LepDiiaDovKonsultantRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassLepDiiaDovKonsultantRepository::class)]
  7. #[ApiResource]
  8. class LepDiiaDovKonsultant
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column]
  15.     private ?int $cokId null;
  16.     #[ORM\Column(length20)]
  17.     private ?string $tabelid null;
  18.     #[ORM\Column(length50)]
  19.     private ?string $family null;
  20.     #[ORM\Column(length50)]
  21.     private ?string $name null;
  22.     #[ORM\Column(length50)]
  23.     private ?string $fname null;
  24.     #[ORM\Column(length50)]
  25.     private ?string $login null;
  26.     #[ORM\Column(length100)]
  27.     private ?string $ppp null;
  28.     #[ORM\Column(length10)]
  29.     private ?string $active null;
  30.     public function getId(): ?int
  31.     {
  32.         return $this->id;
  33.     }
  34.     public function getCokId(): ?int
  35.     {
  36.         return $this->cokId;
  37.     }
  38.     public function setCokId(int $cokId): self
  39.     {
  40.         $this->cokId $cokId;
  41.         return $this;
  42.     }
  43.     public function getTabelid(): ?string
  44.     {
  45.         return $this->tabelid;
  46.     }
  47.     public function setTabelid(string $tabelid): self
  48.     {
  49.         $this->tabelid $tabelid;
  50.         return $this;
  51.     }
  52.     public function getFamily(): ?string
  53.     {
  54.         return $this->family;
  55.     }
  56.     public function setFamily(string $family): self
  57.     {
  58.         $this->family $family;
  59.         return $this;
  60.     }
  61.     public function getName(): ?string
  62.     {
  63.         return $this->name;
  64.     }
  65.     public function setName(string $name): self
  66.     {
  67.         $this->name $name;
  68.         return $this;
  69.     }
  70.     public function getFname(): ?string
  71.     {
  72.         return $this->fname;
  73.     }
  74.     public function setFname(string $fname): self
  75.     {
  76.         $this->fname $fname;
  77.         return $this;
  78.     }
  79.     public function getLogin(): ?string
  80.     {
  81.         return $this->login;
  82.     }
  83.     public function setLogin(string $login): self
  84.     {
  85.         $this->login $login;
  86.         return $this;
  87.     }
  88.     public function getPpp(): ?string
  89.     {
  90.         return $this->ppp;
  91.     }
  92.     public function setPpp(string $ppp): self
  93.     {
  94.         $this->ppp $ppp;
  95.         return $this;
  96.     }
  97.     public function getActive(): ?string
  98.     {
  99.         return $this->active;
  100.     }
  101.     public function setActive(string $active): self
  102.     {
  103.         $this->active $active;
  104.         return $this;
  105.     }
  106. }