<?php declare(strict_types=1);namespace CoreBundle\Entity;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Table("log_gdpr_issue") * @ORM\Entity(repositoryClass="LogGdprIssueRepository") */class LogGdprIssue{ /** * @var int * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private int $id; /** * @var \DateTime * * @ORM\Column(name="timestamp", type="datetime") */ private \DateTime $timestamp; /** * @var int * * @ORM\Column(name="teacher_id", type="integer") */ private int $teacherId; /** * @var int * * @ORM\Column(name="student_id", type="integer") */ private int $studentId; /** * @var string * * @ORM\Column(name="message", type="string") */ private string $message; /** * @var string * * @ORM\Column(name="endpoint", type="string") */ private string $endpoint; public function getId(): int { return $this->id; } public function setId(int $id): void { $this->id = $id; } public function getTimestamp(): \DateTime { return $this->timestamp; } public function setTimestamp(\DateTime $timestamp): void { $this->timestamp = $timestamp; } public function getTeacherId(): int { return $this->teacherId; } public function setTeacherId(int $teacherId): void { $this->teacherId = $teacherId; } public function getStudentId(): int { return $this->studentId; } public function setStudentId(int $studentId): void { $this->studentId = $studentId; } public function getMessage(): string { return $this->message; } public function setMessage(string $message): void { $this->message = $message; } public function getEndpoint(): string { return $this->endpoint; } public function setEndpoint(string $endpoint): void { $this->endpoint = $endpoint; }}