src/Entity/EUmowaLicencyjneWebAmlPartnerska/Umowy.php line 12
<?phpnamespace App\Entity\EUmowaLicencyjneWebAmlPartnerska;use App\Repository\WebamlPartnerska\UmowyRepository;use DateTimeInterface;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: UmowyRepository::class)]#[ORM\Table(name: "umowy")]class Umowy{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $token = null;#[ORM\Column(type: Types::DATETIME_MUTABLE)]private ?DateTimeInterface $data_utworzenia = null;#[ORM\Column(length: 255)]private ?string $email = null;#[ORM\Column(length: 255)]private ?string $nr_umowy = null;#[ORM\Column(length: 255)]private ?string $nazwa = null;#[ORM\Column(length: 255)]private ?string $ulica = null;#[ORM\Column(length: 255)]private ?string $miasto = null;#[ORM\Column(length: 255)]private ?string $kod = null;#[ORM\Column(length: 255)]private ?string $nip = null;#[ORM\Column(length: 11)]private ?string $regon = null;#[ORM\Column(length: 256, nullable: true)]private ?string $notatka = null;#[ORM\Column]private ?int $wczytania = null;#[ORM\Column(type: Types::DATETIME_MUTABLE, nullable: true)]private ?DateTimeInterface $data_akceptacji = null;#[ORM\Column]private ?int $oddzial = null;#[ORM\Column]private ?int $typ_id = null;#[ORM\Column]private ?int $nr_zam = null;#[ORM\Column]private ?int $pakietbhp = null;#[ORM\Column(length: 255)]private ?string $wynagrodzenie = null;#[ORM\Column]private ?int $terminplatnosci = null;#[ORM\Column(name: 'automatyczniePrzedluzana')]private ?int $automatyczniePrzedluzana = null;#[ORM\Column]private ?int $liczba_miesiecy = null;#[ORM\Column(type: Types::TEXT)]private ?string $dodatkowy_produkt = null;#[ORM\Column]private ?int $liczba_klientow = null;#[ORM\Column]private ?int $liczba_stanowisk = null;#[ORM\Column(length: 255)]private ?string $zamawiajacy = null;#[ORM\Column(length: 255)]private ?string $zamawiajacy_telefon = null;#[ORM\Column(length: 255)]private ?string $zamawiajacy_email = null;#[ORM\Column]private ?int $liczba_podmiotow = null;#[ORM\Column]private ?int $wysokosc_prowizji = null;#[ORM\Column(name: 'umowaBezSzkolen')]private ?int $umowaBezSzkolen = null;public function getId(): ?int{return $this->id;}public function getToken(): ?string{return $this->token;}public function setToken(string $token): static{$this->token = $token;return $this;}public function getDataUtworzenia(): ?DateTimeInterface{return $this->data_utworzenia;}public function setDataUtworzenia(DateTimeInterface $data_utworzenia): static{$this->data_utworzenia = $data_utworzenia;return $this;}public function getEmail(): ?string{return $this->email;}public function setEmail(string $email): static{$this->email = $email;return $this;}public function getNrUmowy(): ?string{return $this->nr_umowy;}public function setNrUmowy(string $nr_umowy): static{$this->nr_umowy = $nr_umowy;return $this;}public function getNazwa(): ?string{return $this->nazwa;}public function setNazwa(string $nazwa): static{$this->nazwa = $nazwa;return $this;}public function getUlica(): ?string{return $this->ulica;}public function setUlica(string $ulica): static{$this->ulica = $ulica;return $this;}public function getMiasto(): ?string{return $this->miasto;}public function setMiasto(string $miasto): static{$this->miasto = $miasto;return $this;}public function getKod(): ?string{return $this->kod;}public function setKod(string $kod): static{$this->kod = $kod;return $this;}public function getNip(): ?string{return $this->nip;}public function setNip(string $nip): static{$this->nip = $nip;return $this;}public function getRegon(): ?string{return $this->regon;}public function setRegon(string $regon): static{$this->regon = $regon;return $this;}public function getNotatka(): ?string{return $this->notatka;}public function setNotatka(?string $notatka): static{$this->notatka = $notatka;return $this;}public function getWczytania(): ?int{return $this->wczytania;}public function setWczytania(int $wczytania): static{$this->wczytania = $wczytania;return $this;}public function getDataAkceptacji(): ?DateTimeInterface{return $this->data_akceptacji;}public function setDataAkceptacji(?DateTimeInterface $data_akceptacji): static{$this->data_akceptacji = $data_akceptacji;return $this;}public function getOddzial(): ?int{return $this->oddzial;}public function setOddzial(int $oddzial): static{$this->oddzial = $oddzial;return $this;}public function getTypId(): ?int{return $this->typ_id;}public function setTypId(int $typ_id): static{$this->typ_id = $typ_id;return $this;}public function getNrZam(): ?int{return $this->nr_zam;}public function setNrZam(int $nr_zam): static{$this->nr_zam = $nr_zam;return $this;}public function getPakietbhp(): ?int{return $this->pakietbhp;}public function setPakietbhp(int $pakietbhp): static{$this->pakietbhp = $pakietbhp;return $this;}public function getWynagrodzenie(): ?string{return $this->wynagrodzenie;}public function setWynagrodzenie(string $wynagrodzenie): static{$this->wynagrodzenie = $wynagrodzenie;return $this;}public function getTerminplatnosci(): ?int{return $this->terminplatnosci;}public function setTerminplatnosci(int $terminplatnosci): static{$this->terminplatnosci = $terminplatnosci;return $this;}public function getAutomatyczniePrzedluzana(): ?int{return $this->automatyczniePrzedluzana;}public function setAutomatyczniePrzedluzana(int $automatyczniePrzedluzana): static{$this->automatyczniePrzedluzana = $automatyczniePrzedluzana;return $this;}public function getLiczbaMiesiecy(): ?int{return $this->liczba_miesiecy;}public function setLiczbaMiesiecy(int $liczba_miesiecy): static{$this->liczba_miesiecy = $liczba_miesiecy;return $this;}public function getDodatkowyProdukt(): ?string{return $this->dodatkowy_produkt;}public function setDodatkowyProdukt(string $dodatkowy_produkt): static{$this->dodatkowy_produkt = $dodatkowy_produkt;return $this;}public function getLiczbaKlientow(): ?int{return $this->liczba_klientow;}public function setLiczbaKlientow(int $liczba_klientow): static{$this->liczba_klientow = $liczba_klientow;return $this;}public function getLiczbaStanowisk(): ?int{return $this->liczba_stanowisk;}public function setLiczbaStanowisk(int $liczba_stanowisk): static{$this->liczba_stanowisk = $liczba_stanowisk;return $this;}public function getZamawiajacy(): ?string{return $this->zamawiajacy;}public function setZamawiajacy(string $zamawiajacy): static{$this->zamawiajacy = $zamawiajacy;return $this;}public function getZamawiajacyTelefon(): ?string{return $this->zamawiajacy_telefon;}public function setZamawiajacyTelefon(string $zamawiajacy_telefon): static{$this->zamawiajacy_telefon = $zamawiajacy_telefon;return $this;}public function getZamawiajacyEmail(): ?string{return $this->zamawiajacy_email;}public function setZamawiajacyEmail(string $zamawiajacy_email): static{$this->zamawiajacy_email = $zamawiajacy_email;return $this;}public function getLiczbaPodmiotow(): ?int{return $this->liczba_podmiotow;}public function setLiczbaPodmiotow(int $liczba_podmiotow): static{$this->liczba_podmiotow = $liczba_podmiotow;return $this;}public function getWysokoscProwizji(): ?int{return $this->wysokosc_prowizji;}public function setWysokoscProwizji(int $wysokosc_prowizji): static{$this->wysokosc_prowizji = $wysokosc_prowizji;return $this;}public function getUmowaBezSzkolen(): ?int{return $this->umowaBezSzkolen;}public function setUmowaBezSzkolen(int $umowaBezSzkolen): static{$this->umowaBezSzkolen = $umowaBezSzkolen;return $this;}public function getIloscRekomendowanychPodmiotow(): ?int{return $this->liczba_podmiotow;}public function getDataAkceptacjiAneksu(): string{return '-';}public function getAneks(): string{return 'nd.';}public function getProcentProwizji(): ?int{return $this->wysokosc_prowizji;}}