src/Entity/Platforma/PlatRozliczeniaBiuraAuto.php line 12

  1. <?php
  2. namespace App\Entity\Platforma;
  3. use App\Repository\Platforma\PlatRozliczeniaBiuraAutoRepository;
  4. use DateTimeInterface;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassPlatRozliczeniaBiuraAutoRepository::class)]
  8. #[ORM\Table(name"plat_rozliczenia_biura_auto")]
  9. class PlatRozliczeniaBiuraAuto
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $plat_rozliczenia_biura_auto_id null;
  15.     #[ORM\ManyToOne(targetEntityUserSzkolenia::class)]
  16.     #[ORM\JoinColumn(name'id_biura'referencedColumnName'id_szk'nullablefalse)]
  17.     private UserSzkolenia $userSzkolenia;
  18.     #[ORM\Column]
  19.     private ?int $miesiac null;
  20.     #[ORM\Column]
  21.     private ?int $rok null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?bool $raport_wyslany null;
  24.     #[ORM\Column(length255nullabletrue)]
  25.     private ?string $suma_podmiotow null;
  26.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  27.     private ?DateTimeInterface $data_wyslania_raportu null;
  28.     #[ORM\Column]
  29.     private ?bool $is_vat_exempt null;
  30.     public function getPlatRozliczeniaBiuraAutoId(): ?int
  31.     {
  32.         return $this->plat_rozliczenia_biura_auto_id;
  33.     }
  34.     public function setPlatRozliczeniaBiuraAutoId(int $plat_rozliczenia_biura_auto_id): static
  35.     {
  36.         $this->plat_rozliczenia_biura_auto_id $plat_rozliczenia_biura_auto_id;
  37.         return $this;
  38.     }
  39.     public function getUserSzkolenia(): UserSzkolenia
  40.     {
  41.         return $this->userSzkolenia;
  42.     }
  43.     public function setUserSzkolenia(UserSzkolenia $userSzkolenia): void
  44.     {
  45.         $this->userSzkolenia $userSzkolenia;
  46.     }
  47.     public function getMiesiac(): ?int
  48.     {
  49.         return $this->miesiac;
  50.     }
  51.     public function setMiesiac(int $miesiac): static
  52.     {
  53.         $this->miesiac $miesiac;
  54.         return $this;
  55.     }
  56.     public function getRok(): ?int
  57.     {
  58.         return $this->rok;
  59.     }
  60.     public function setRok(int $rok): static
  61.     {
  62.         $this->rok $rok;
  63.         return $this;
  64.     }
  65.     public function isRaportWyslany(): ?bool
  66.     {
  67.         return $this->raport_wyslany;
  68.     }
  69.     public function setRaportWyslany(?bool $raport_wyslany): static
  70.     {
  71.         $this->raport_wyslany $raport_wyslany;
  72.         return $this;
  73.     }
  74.     public function getSumaPodmiotow(): ?string
  75.     {
  76.         return $this->suma_podmiotow;
  77.     }
  78.     public function setSumaPodmiotow(?string $suma_podmiotow): static
  79.     {
  80.         $this->suma_podmiotow $suma_podmiotow;
  81.         return $this;
  82.     }
  83.     public function getDataWyslaniaRaportu(): ?DateTimeInterface
  84.     {
  85.         return $this->data_wyslania_raportu;
  86.     }
  87.     public function setDataWyslaniaRaportu(DateTimeInterface $data_wyslania_raportu): static
  88.     {
  89.         $this->data_wyslania_raportu $data_wyslania_raportu;
  90.         return $this;
  91.     }
  92.     public function isVatExempt(): ?bool
  93.     {
  94.         return $this->is_vat_exempt;
  95.     }
  96.     public function setIsVatExempt(?bool $is_vat_exempt): void
  97.     {
  98.         $this->is_vat_exempt $is_vat_exempt;
  99.     }
  100. }