src/Entity/EUmowaBhpStacjonarna/Reprezentanci.php line 9
<?phpnamespace App\Entity\EUmowaBhpStacjonarna;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity]#[ORM\Table(name: 'reprezentanci')]class Reprezentanci{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column(name: 'id_reprezentanta', type: 'integer')]private ?int $id = null;#[ORM\Column(name: 'token_umowy', type: 'string', length: 256)]private string $tokenUmowy;#[ORM\Column(name: 'imie_nazwisko_reprezentanta', type: 'string', length: 256)]private string $imieNazwiskoReprezentanta;#[ORM\Column(name: 'stanowisko_reprezentanta', type: 'string', length: 256)]private string $stanowiskoReprezentanta;#[ORM\Column(name: 'telefon_reprezentanta', type: 'string', length: 256)]private string $telefonReprezentanta;#[ORM\Column(name: 'email_reprezentanta', type: 'string', length: 256)]private string $emailReprezentanta;#[ORM\Column(name: 'data_akceptacji', type: 'datetime_immutable', nullable: true)]private ?\DateTimeImmutable $dataAkceptacji = null;#[ORM\Column(name: 'reprezentant_token', type: 'string', length: 256)]private string $reprezentantToken;#[ORM\Column(name: 'ip_akceptacji', type: 'string', length: 64, nullable: true)]private ?string $ipAkceptacji = null;#[ORM\Column(name: 'detale_akceptacji', type: 'text', nullable: true)]private ?string $detaleAkceptacji = null;// --------- 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 getImie_Nazwisko_Reprezentanta(): string{return $this->imieNazwiskoReprezentanta;}public function setImieNazwiskoReprezentanta(string $imieNazwiskoReprezentanta): self{$this->imieNazwiskoReprezentanta = $imieNazwiskoReprezentanta;return $this;}public function getStanowisko_Reprezentanta(): string{return $this->stanowiskoReprezentanta;}public function setStanowiskoReprezentanta(string $stanowiskoReprezentanta): self{$this->stanowiskoReprezentanta = $stanowiskoReprezentanta;return $this;}public function getTelefon_Reprezentanta(): string{return $this->telefonReprezentanta;}public function setTelefonReprezentanta(string $telefonReprezentanta): self{$this->telefonReprezentanta = $telefonReprezentanta;return $this;}public function getEmail_Reprezentanta(): string{return $this->emailReprezentanta;}public function setEmailReprezentanta(string $emailReprezentanta): self{$this->emailReprezentanta = $emailReprezentanta;return $this;}public function getData_Akceptacji(): ?\DateTimeImmutable{return $this->dataAkceptacji;}public function setDataAkceptacji(?\DateTimeImmutable $dataAkceptacji): self{$this->dataAkceptacji = $dataAkceptacji;return $this;}public function getReprezentantToken(): string{return $this->reprezentantToken;}public function setReprezentantToken(string $reprezentantToken): self{$this->reprezentantToken = $reprezentantToken;return $this;}public function getIpAkceptacji(): ?string{return $this->ipAkceptacji;}public function setIpAkceptacji(?string $ipAkceptacji): self{$this->ipAkceptacji = $ipAkceptacji;return $this;}public function getDetaleAkceptacji(): ?string{return $this->detaleAkceptacji;}public function setDetaleAkceptacji(?string $detaleAkceptacji): self{$this->detaleAkceptacji = $detaleAkceptacji;return $this;}}