src/Entity/EUmowaLicencyjneWebAmlNieruchomosci/Raty.php line 9
<?phpnamespace App\Entity\EUmowaLicencyjneWebAmlNieruchomosci;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity]#[ORM\Table(name: 'raty')]class Raty{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column(name: 'id_raty', type: 'integer')]private ?int $id = null;#[ORM\Column(name: 'token_umowy', type: 'string', length: 256)]private string $tokenUmowy;#[ORM\Column(name: 'nr_raty', type: 'integer')]private int $nrRaty;#[ORM\Column(name: 'kwota_netto', type: 'float')]private float $kwotaNetto;#[ORM\Column(name: 'data_platnosci', type: 'integer')]private int $dataPlatnosci;// --------- Gettery / Settery ---------public function getId(): ?int{return $this->id;}public function getTokenUmowy(): string{return $this->tokenUmowy;}public function setTokenUmowy(string $tokenUmowy): self{$this->tokenUmowy = $tokenUmowy;return $this;}public function getNr_Raty(): int{return $this->nrRaty;}public function setNrRaty(int $nrRaty): self{$this->nrRaty = $nrRaty;return $this;}public function getKwota_Netto(): float{return $this->kwotaNetto;}public function setKwotaNetto(float $kwotaNetto): self{$this->kwotaNetto = $kwotaNetto;return $this;}public function getData_Platnosci(): int{return $this->dataPlatnosci;}public function setDataPlatnosci(int $dataPlatnosci): self{$this->dataPlatnosci = $dataPlatnosci;return $this;}}