src/Entity/Platforma/PlatRozliczenieBiura.php line 11
<?phpnamespace App\Entity\Platforma;use App\Repository\Platforma\PlatRozliczenieBiuraRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: PlatRozliczenieBiuraRepository::class)]#[ORM\Table(name: "plat_rozliczenie_biura")]class PlatRozliczenieBiura{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id_rozliczenia = null;#[ORM\ManyToOne(targetEntity: UserSzkolenia::class)]#[ORM\JoinColumn(name: 'id_biura', referencedColumnName: 'id_szk', nullable: false)]private UserSzkolenia $userSzkolenia;#[ORM\Column]private ?int $miesiac = null;#[ORM\Column]private ?int $rok = null;#[ORM\Column(length: 255, nullable: true)]private ?string $faktura = null;#[ORM\Column(nullable: true)]private ?float $kwota = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?\DateTimeInterface $data_rozliczenia = null;#[ORM\Column]private ?bool $wplynela = null;public function getIdRozliczenia(): ?int{return $this->id_rozliczenia;}public function getUserSzkolenia(): UserSzkolenia{return $this->userSzkolenia;}public function setUserSzkolenia(UserSzkolenia $userSzkolenia): void{$this->userSzkolenia = $userSzkolenia;}public function getMiesiac(): ?int{return $this->miesiac;}public function setMiesiac(int $miesiac): static{$this->miesiac = $miesiac;return $this;}public function getRok(): ?int{return $this->rok;}public function setRok(int $rok): static{$this->rok = $rok;return $this;}public function getFaktura(): ?string{return $this->faktura;}public function setFaktura(?string $faktura): static{$this->faktura = $faktura;return $this;}public function getKwota(): ?float{return $this->kwota;}public function setKwota(?float $kwota): static{$this->kwota = $kwota;return $this;}public function getDataRozliczenia(): ?\DateTimeInterface{return $this->data_rozliczenia;}public function setDataRozliczenia(\DateTimeInterface $data_rozliczenia): static{$this->data_rozliczenia = $data_rozliczenia;return $this;}public function isWplynela(): ?bool{return $this->wplynela;}public function setWplynela(bool $wplynela): static{$this->wplynela = $wplynela;return $this;}}