src/Entity/EUmowaLicencyjneWebAmlNieruchomosci/UmowyTemp.php line 9
<?phpnamespace App\Entity\EUmowaLicencyjneWebAmlNieruchomosci;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity]#[ORM\Table(name: 'umowy_temp')]class UmowyTemp{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column(type: 'integer')]private ?int $id = null;#[ORM\Column(type: 'string', length: 256)]private string $token;#[ORM\Column(name: 'data_utworzenia', type: 'datetime_immutable')]private \DateTimeImmutable $dataUtworzenia;#[ORM\Column(type: 'string', length: 256)]private string $email;#[ORM\Column(type: 'string', length: 256)]private string $nazwa;#[ORM\Column(type: 'string', length: 256)]private string $ulica;#[ORM\Column(type: 'string', length: 256)]private string $miasto;#[ORM\Column(type: 'string', length: 6)]private string $kod;#[ORM\Column(type: 'string', length: 256)]private string $nip;#[ORM\Column(type: 'string', length: 11)]private string $regon;#[ORM\Column(type: 'integer', options: ['default' => 0])]private int $wczytania = 0;#[ORM\Column(type: 'integer', options: ['default' => 0])]private int $zaakceptowana = 0;#[ORM\Column(name: 'data_akceptacji', type: 'datetime_immutable', nullable: true)]private ?\DateTimeImmutable $dataAkceptacji = null;#[ORM\Column(type: 'text', nullable: true)]private ?string $notatka = null;#[ORM\Column(name: 'typ_id', type: 'integer')]private int $typId;#[ORM\Column(type: 'string', length: 256)]private string $oddzial;#[ORM\Column(name: 'nr_zam', type: 'integer')]private int $nrZam;#[ORM\Column(name: 'procent_prowizji', type: 'integer', options: ['default' => 45])]private int $procentProwizji = 45;#[ORM\Column(type: 'string', length: 256)]private string $wynagrodzenie;#[ORM\Column(name: 'terminplatnosci', type: 'integer')]private int $terminPlatnosci;#[ORM\Column(name: 'automatyczniePrzedluzana', type: 'integer', options: ['default' => 0])]private int $automatyczniePrzedluzana = 0;#[ORM\Column(name: 'liczba_miesiecy', type: 'integer')]private int $liczbaMiesiecy;#[ORM\Column(name: 'dodatkowy_produkt', type: 'string', length: 256, nullable: true)]private ?string $dodatkowyProdukt = null;// ---------------- BRAKUJACE POLA Z TABELI ----------------#[ORM\Column(name: 'pakietbhp', type: 'integer')]private int $pakietbhp;#[ORM\Column(name: 'liczba_klientow', type: 'integer')]private int $liczbaKlientow;#[ORM\Column(name: 'liczba_stanowisk', type: 'integer')]private int $liczbaStanowisk;#[ORM\Column(name: 'zamawiajacy', type: 'string', length: 256)]private string $zamawiajacy;#[ORM\Column(name: 'zamawiajacy_telefon', type: 'string', length: 256)]private string $zamawiajacyTelefon;#[ORM\Column(name: 'zamawiajacy_email', type: 'string', length: 256)]private string $zamawiajacyEmail;#[ORM\Column(name: 'data_startu_umowy', type: 'datetime_immutable', nullable: true)]private ?\DateTimeImmutable $dataStartuUmowy = null;public function __construct(){$this->dataUtworzenia = new \DateTimeImmutable();}// ---------------- Gettery / Settery ----------------public function getId(): ?int { return $this->id; }public function getToken(): string { return $this->token; }public function setToken(string $token): self { $this->token = $token; return $this; }public function getData_Utworzenia(): \DateTimeImmutable { return $this->dataUtworzenia; }public function setDataUtworzenia(\DateTimeImmutable $d): self { $this->dataUtworzenia = $d; return $this; }public function getEmail(): string { return $this->email; }public function setEmail(string $email): self { $this->email = $email; return $this; }public function getNazwa(): string { return $this->nazwa; }public function setNazwa(string $nazwa): self { $this->nazwa = $nazwa; return $this; }public function getUlica(): string { return $this->ulica; }public function setUlica(string $ulica): self { $this->ulica = $ulica; return $this; }public function getMiasto(): string { return $this->miasto; }public function setMiasto(string $miasto): self { $this->miasto = $miasto; return $this; }public function getKod(): string { return $this->kod; }public function setKod(string $kod): self { $this->kod = $kod; return $this; }public function getNip(): string { return $this->nip; }public function setNip(string $nip): self { $this->nip = $nip; return $this; }public function getRegon(): string { return $this->regon; }public function setRegon(string $regon): self { $this->regon = $regon; return $this; }public function getWczytania(): int { return $this->wczytania; }public function setWczytania(int $wczytania): self { $this->wczytania = $wczytania; return $this; }public function getZaakceptowana(): int { return $this->zaakceptowana; }public function setZaakceptowana(int $z): self { $this->zaakceptowana = $z; return $this; }public function getDataAkceptacji(): ?\DateTimeImmutable { return $this->dataAkceptacji; }public function setDataAkceptacji(?\DateTimeImmutable $d): self { $this->dataAkceptacji = $d; return $this; }public function getNotatka(): ?string { return $this->notatka; }public function setNotatka(?string $n): self { $this->notatka = $n; return $this; }public function getTypId(): int { return $this->typId; }public function setTypId(int $t): self { $this->typId = $t; return $this; }public function getOddzial(): string { return $this->oddzial; }public function setOddzial(string $oddzial): self { $this->oddzial = $oddzial; return $this; }public function getNrZam(): int { return $this->nrZam; }public function setNrZam(int $nrZam): self { $this->nrZam = $nrZam; return $this; }public function getProcentProwizji(): int { return $this->procentProwizji; }public function setProcentProwizji(int $p): self { $this->procentProwizji = $p; return $this; }public function getWynagrodzenie(): string { return $this->wynagrodzenie; }public function setWynagrodzenie(string $w): self { $this->wynagrodzenie = $w; return $this; }public function getTerminPlatnosci(): int { return $this->terminPlatnosci; }public function setTerminPlatnosci(int $t): self { $this->terminPlatnosci = $t; return $this; }public function getAutomatyczniePrzedluzana(): int { return $this->automatyczniePrzedluzana; }public function setAutomatyczniePrzedluzana(int $v): self { $this->automatyczniePrzedluzana = $v; return $this; }public function getLiczba_Miesiecy(): int { return $this->liczbaMiesiecy; }public function setLiczbaMiesiecy(int $l): self { $this->liczbaMiesiecy = $l; return $this; }public function getDodatkowy_Produkt(): ?string { return $this->dodatkowyProdukt; }public function setDodatkowyProdukt(?string $d): self { $this->dodatkowyProdukt = $d; return $this; }// -------- Gettery / Settery dla DODANYCH POL --------public function getPakietbhp(): int { return $this->pakietbhp; }public function setPakietbhp(int $pakietbhp): self { $this->pakietbhp = $pakietbhp; return $this; }public function getLiczbaKlientow(): int { return $this->liczbaKlientow; }public function setLiczbaKlientow(int $liczbaKlientow): self { $this->liczbaKlientow = $liczbaKlientow; return $this; }public function getLiczbaStanowisk(): int { return $this->liczbaStanowisk; }public function setLiczbaStanowisk(int $liczbaStanowisk): self { $this->liczbaStanowisk = $liczbaStanowisk; return $this; }public function getZamawiajacy(): string { return $this->zamawiajacy; }public function setZamawiajacy(string $zamawiajacy): self { $this->zamawiajacy = $zamawiajacy; return $this; }public function getZamawiajacyTelefon(): string { return $this->zamawiajacyTelefon; }public function setZamawiajacyTelefon(string $zamawiajacyTelefon): self { $this->zamawiajacyTelefon = $zamawiajacyTelefon; return $this; }public function getZamawiajacyEmail(): string { return $this->zamawiajacyEmail; }public function setZamawiajacyEmail(string $zamawiajacyEmail): self { $this->zamawiajacyEmail = $zamawiajacyEmail; return $this; }public function getDataStartuUmowy(): ?\DateTimeImmutable { return $this->dataStartuUmowy; }public function setDataStartuUmowy(?\DateTimeImmutable $dataStartuUmowy): self { $this->dataStartuUmowy = $dataStartuUmowy; return $this; }}