src/Entity/PwAccount.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Repository\PwAccountRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. use ApiPlatform\Metadata\ApiFilter;
  7. use ApiPlatform\Doctrine\Orm\Filter\SearchFilter;
  8. #[ORM\Entity(repositoryClassPwAccountRepository::class)]
  9. #[ApiResource]
  10. #[ApiFilter(SearchFilter::class, properties: ['city.id' => 'exact''street.id' => 'exact''otg.id' => 'exact' 'buildingName' => 'exact''acc' => 'exact'])]
  11. class PwAccount
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue(strategy'IDENTITY')]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[ORM\ManyToOne(inversedBy'accounts')]
  18.     private ?PwOtg $otg null;
  19.     #[ORM\ManyToOne(inversedBy'accounts')]
  20.     private ?PwCity $city null;
  21.     #[ORM\ManyToOne(inversedBy'accounts')]
  22.     private ?PwStreet $street null;
  23.     #[ORM\Column(length50nullabletrue)]
  24.     private ?string $buildingName null;
  25.     #[ORM\Column(length20)]
  26.     private ?string $acc null;
  27.     #[ORM\Column(length50,  uniquetrue)]
  28.     private ?string $eicKod null;
  29.     #[ORM\Column(length20nullabletrue)]
  30.     private ?string $chergGpv null;
  31.     #[ORM\Column(length20nullabletrue)]
  32.     private ?string $chergGav null;
  33.     #[ORM\Column(length20nullabletrue)]
  34.     private ?string $chergAchr null;
  35.     #[ORM\Column(length20nullabletrue)]
  36.     private ?string $chergGvsp null;
  37.     #[ORM\Column(length20nullabletrue)]
  38.     private ?string $chergSgav null;
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getOtg(): ?PwOtg
  44.     {
  45.         return $this->otg;
  46.     }
  47.     public function setOtg(?PwOtg $otg): static
  48.     {
  49.         $this->otg $otg;
  50.         return $this;
  51.     }
  52.     public function getCity(): ?PwCity
  53.     {
  54.         return $this->city;
  55.     }
  56.     public function setCity(?PwCity $city): static
  57.     {
  58.         $this->city $city;
  59.         return $this;
  60.     }
  61.     public function getStreet(): ?PwStreet
  62.     {
  63.         return $this->street;
  64.     }
  65.     public function setStreet(?PwStreet $street): static
  66.     {
  67.         $this->street $street;
  68.         return $this;
  69.     }
  70.     public function getBuildingName(): ?string
  71.     {
  72.         return $this->buildingName;
  73.     }
  74.     public function setBuildingName(?string $buildingName): static
  75.     {
  76.         $this->buildingName $buildingName;
  77.         return $this;
  78.     }
  79.     public function getAcc(): ?string
  80.     {
  81.         return $this->acc;
  82.     }
  83.     public function setAcc(string $acc): static
  84.     {
  85.         $this->acc $acc;
  86.         return $this;
  87.     }
  88.     public function getEicKod(): ?string
  89.     {
  90.         return $this->eicKod;
  91.     }
  92.     public function setEicKod(string $eicKod): static
  93.     {
  94.         $this->eicKod $eicKod;
  95.         return $this;
  96.     }
  97.     public function getChergGpv(): ?string
  98.     {
  99.         return $this->chergGpv;
  100.     }
  101.     public function setChergGpv(?string $chergGpv): static
  102.     {
  103.         $this->chergGpv $chergGpv;
  104.         return $this;
  105.     }
  106.     public function getChergGav(): ?string
  107.     {
  108.         return $this->chergGav;
  109.     }
  110.     public function setChergGav(?string $chergGav): static
  111.     {
  112.         $this->chergGav $chergGav;
  113.         return $this;
  114.     }
  115.     public function getChergAchr(): ?string
  116.     {
  117.         return $this->chergAchr;
  118.     }
  119.     public function setChergAchr(?string $chergAchr): static
  120.     {
  121.         $this->chergAchr $chergAchr;
  122.         return $this;
  123.     }
  124.     public function getChergGvsp(): ?string
  125.     {
  126.         return $this->chergGvsp;
  127.     }
  128.     public function setChergGvsp(?string $chergGvsp): static
  129.     {
  130.         $this->chergGvsp $chergGvsp;
  131.         return $this;
  132.     }
  133.     public function getChergSgav(): ?string
  134.     {
  135.         return $this->chergSgav;
  136.     }
  137.     public function setChergSgav(?string $chergSgav): static
  138.     {
  139.         $this->chergSgav $chergSgav;
  140.         return $this;
  141.     }
  142. }