src/Entity/EUmowaBdo/Reprezentanci.php line 9

  1. <?php
  2. namespace App\Entity\EUmowaBdo;
  3. use Doctrine\ORM\Mapping as ORM;
  4. #[ORM\Entity]
  5. #[ORM\Table(name'reprezentanci')]
  6. class Reprezentanci
  7. {
  8.     #[ORM\Id]
  9.     #[ORM\GeneratedValue]
  10.     #[ORM\Column(name'id_reprezentanta'type'integer')]
  11.     private ?int $id null;
  12.     #[ORM\Column(name'token_umowy'type'string'length256)]
  13.     private string $tokenUmowy;
  14.     #[ORM\Column(name'imie_nazwisko_reprezentanta'type'string'length256)]
  15.     private string $imieNazwiskoReprezentanta;
  16.     #[ORM\Column(name'stanowisko_reprezentanta'type'string'length256)]
  17.     private string $stanowiskoReprezentanta;
  18.     #[ORM\Column(name'telefon_reprezentanta'type'string'length256)]
  19.     private string $telefonReprezentanta;
  20.     #[ORM\Column(name'email_reprezentanta'type'string'length256)]
  21.     private string $emailReprezentanta;
  22.     #[ORM\Column(name'data_akceptacji'type'datetime_immutable'nullabletrue)]
  23.     private ?\DateTimeImmutable $dataAkceptacji null;
  24.     #[ORM\Column(name'reprezentant_token'type'string'length256)]
  25.     private string $reprezentantToken;
  26.     #[ORM\Column(name'ip_akceptacji'type'string'length64nullabletrue)]
  27.     private ?string $ipAkceptacji null;
  28.     #[ORM\Column(name'detale_akceptacji'type'text'nullabletrue)]
  29.     private ?string $detaleAkceptacji null;
  30.     // --------- Gettery / Settery ---------
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getTokenUmowy(): string
  36.     {
  37.         return $this->tokenUmowy;
  38.     }
  39.     public function setTokenUmowy(string $tokenUmowy): self
  40.     {
  41.         $this->tokenUmowy $tokenUmowy;
  42.         return $this;
  43.     }
  44.     public function getImie_Nazwisko_Reprezentanta(): string
  45.     {
  46.         return $this->imieNazwiskoReprezentanta;
  47.     }
  48.     public function setImieNazwiskoReprezentanta(string $imieNazwiskoReprezentanta): self
  49.     {
  50.         $this->imieNazwiskoReprezentanta $imieNazwiskoReprezentanta;
  51.         return $this;
  52.     }
  53.     public function getStanowisko_Reprezentanta(): string
  54.     {
  55.         return $this->stanowiskoReprezentanta;
  56.     }
  57.     public function setStanowiskoReprezentanta(string $stanowiskoReprezentanta): self
  58.     {
  59.         $this->stanowiskoReprezentanta $stanowiskoReprezentanta;
  60.         return $this;
  61.     }
  62.     public function getTelefon_Reprezentanta(): string
  63.     {
  64.         return $this->telefonReprezentanta;
  65.     }
  66.     public function setTelefonReprezentanta(string $telefonReprezentanta): self
  67.     {
  68.         $this->telefonReprezentanta $telefonReprezentanta;
  69.         return $this;
  70.     }
  71.     public function getEmail_Reprezentanta(): string
  72.     {
  73.         return $this->emailReprezentanta;
  74.     }
  75.     public function setEmailReprezentanta(string $emailReprezentanta): self
  76.     {
  77.         $this->emailReprezentanta $emailReprezentanta;
  78.         return $this;
  79.     }
  80.     public function getData_Akceptacji(): ?\DateTimeImmutable
  81.     {
  82.         return $this->dataAkceptacji;
  83.     }
  84.     public function setDataAkceptacji(?\DateTimeImmutable $dataAkceptacji): self
  85.     {
  86.         $this->dataAkceptacji $dataAkceptacji;
  87.         return $this;
  88.     }
  89.     public function getReprezentantToken(): string
  90.     {
  91.         return $this->reprezentantToken;
  92.     }
  93.     public function setReprezentantToken(string $reprezentantToken): self
  94.     {
  95.         $this->reprezentantToken $reprezentantToken;
  96.         return $this;
  97.     }
  98.     public function getIpAkceptacji(): ?string
  99.     {
  100.         return $this->ipAkceptacji;
  101.     }
  102.     public function setIpAkceptacji(?string $ipAkceptacji): self
  103.     {
  104.         $this->ipAkceptacji $ipAkceptacji;
  105.         return $this;
  106.     }
  107.     public function getDetaleAkceptacji(): ?string
  108.     {
  109.         return $this->detaleAkceptacji;
  110.     }
  111.     public function setDetaleAkceptacji(?string $detaleAkceptacji): self
  112.     {
  113.         $this->detaleAkceptacji $detaleAkceptacji;
  114.         return $this;
  115.     }
  116. }