src/Entity/SimpleTrack.php line 10

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SimpleTrackRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassSimpleTrackRepository::class)]
  7. class SimpleTrack
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\Column(length255)]
  14.     private ?string $sessionId null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  16.     private ?\DateTimeInterface $date null;
  17.     #[ORM\Column(nullabletrue)]
  18.     private ?int $pageId null;
  19.     #[ORM\Column(length255nullabletrue)]
  20.     private ?string $pageTitle null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $search null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $param1 null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $param2 null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $param3 null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?int $productId null;
  31.     public function getId(): ?int
  32.     {
  33.         return $this->id;
  34.     }
  35.     public function getSessionId(): ?string
  36.     {
  37.         return $this->sessionId;
  38.     }
  39.     public function setSessionId(string $sessionId): static
  40.     {
  41.         $this->sessionId $sessionId;
  42.         return $this;
  43.     }
  44.     public function getDate(): ?\DateTimeInterface
  45.     {
  46.         return $this->date;
  47.     }
  48.     public function setDate(?\DateTimeInterface $date): static
  49.     {
  50.         $this->date $date;
  51.         return $this;
  52.     }
  53.     public function getPageId(): ?int
  54.     {
  55.         return $this->pageId;
  56.     }
  57.     public function setPageId(?int $pageId): static
  58.     {
  59.         $this->pageId $pageId;
  60.         return $this;
  61.     }
  62.     public function getPageTitle(): ?string
  63.     {
  64.         return $this->pageTitle;
  65.     }
  66.     public function setPageTitle(?string $pageTitle): static
  67.     {
  68.         $this->pageTitle $pageTitle;
  69.         return $this;
  70.     }
  71.     public function getSearch(): ?string
  72.     {
  73.         return $this->search;
  74.     }
  75.     public function setSearch(?string $search): static
  76.     {
  77.         $this->search $search;
  78.         return $this;
  79.     }
  80.     public function getParam1(): ?string
  81.     {
  82.         return $this->param1;
  83.     }
  84.     public function setParam1(?string $param1): static
  85.     {
  86.         $this->param1 $param1;
  87.         return $this;
  88.     }
  89.     public function getParam2(): ?string
  90.     {
  91.         return $this->param2;
  92.     }
  93.     public function setParam2(?string $param2): static
  94.     {
  95.         $this->param2 $param2;
  96.         return $this;
  97.     }
  98.     public function getParam3(): ?string
  99.     {
  100.         return $this->param3;
  101.     }
  102.     public function setParam3(?string $param3): static
  103.     {
  104.         $this->param3 $param3;
  105.         return $this;
  106.     }
  107.     public function getProductId(): ?int
  108.     {
  109.         return $this->productId;
  110.     }
  111.     public function setProductId(?int $productId): static
  112.     {
  113.         $this->productId $productId;
  114.         return $this;
  115.     }
  116. }