src/Entity/Reminder.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ReminderRepository;
  4. use App\Entity\Prospect;
  5. use App\Entity\Groep;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassReminderRepository::class)]
  9. class Reminder
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(typeTypes::DATE_MUTABLE)]
  16.     private ?\DateTimeInterface $datum null;
  17.     #[ORM\ManyToOne(inversedBy'reminders')]
  18.     private ?user $user null;
  19.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  20.     private ?string $opmerking null;
  21.     #[ORM\Column(length255)]
  22.     private ?string $titel null;
  23.       #[ORM\Column]
  24.     private ?bool $isActive null;
  25.       #[ORM\ManyToOne(inversedBy'reminders')]
  26.       private ?order $orderid null;
  27.       #[ORM\ManyToOne(inversedBy'reminders')]
  28.       private ?prospect $prospect null;
  29.       #[ORM\ManyToOne(inversedBy'reminders')]
  30.       private ?vestiging $vestiging null;
  31.       #[ORM\ManyToOne(inversedBy'reminders')]
  32.       private ?groep $groep null;
  33.       #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  34.       private ?\DateTimeInterface $ingevoerd_datum null;
  35.       #[ORM\ManyToOne(inversedBy'created_reminders')]
  36.       private ?user $ingevoerd_door null;
  37.     public function __toString()
  38.     {
  39.         return($this->getTitel());
  40.     }
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getDatum(): ?\DateTimeInterface
  46.     {
  47.         return $this->datum;
  48.     }
  49.     public function setDatum(?\DateTimeInterface $datum): self
  50.     {
  51.         $this->datum $datum;
  52.         return $this;
  53.     }
  54.     public function getUser(): ?user
  55.     {
  56.         return $this->user;
  57.     }
  58.     public function setUser(?user $user): self
  59.     {
  60.         $this->user $user;
  61.         return $this;
  62.     }
  63.     public function getOpmerking(): ?string
  64.     {
  65.         return $this->opmerking;
  66.     }
  67.     public function setOpmerking(?string $opmerking): self
  68.     {
  69.         $this->opmerking $opmerking;
  70.         return $this;
  71.     }
  72.     public function getTitel(): ?string
  73.     {
  74.         return $this->titel;
  75.     }
  76.     public function setTitel(string $titel): self
  77.     {
  78.         $this->titel $titel;
  79.         return $this;
  80.     }
  81.     public function isIsActive(): ?bool
  82.     {
  83.         return $this->isActive;
  84.     }
  85.     public function setIsActive(bool $isActive): static
  86.     {
  87.         $this->isActive $isActive;
  88.         return $this;
  89.     }
  90.     public function getOrderid(): ?order
  91.     {
  92.         return $this->orderid;
  93.     }
  94.     public function setOrderid(?order $orderid): static
  95.     {
  96.         $this->orderid $orderid;
  97.         return $this;
  98.     }
  99.     public function getProspect(): ?prospect
  100.     {
  101.         return $this->prospect;
  102.     }
  103.     public function setProspect(?prospect $prospect): static
  104.     {
  105.         $this->prospect $prospect;
  106.         return $this;
  107.     }
  108.     public function getVestiging(): ?vestiging
  109.     {
  110.         return $this->vestiging;
  111.     }
  112.     public function setVestiging(?vestiging $vestiging): static
  113.     {
  114.         $this->vestiging $vestiging;
  115.         return $this;
  116.     }
  117.     public function getGroep(): ?groep
  118.     {
  119.         return $this->groep;
  120.     }
  121.     public function setGroep(?groep $groep): static
  122.     {
  123.         $this->groep $groep;
  124.         return $this;
  125.     }
  126.     public function getIngevoerdDatum(): ?\DateTimeInterface
  127.     {
  128.         return $this->ingevoerd_datum;
  129.     }
  130.     public function setIngevoerdDatum(?\DateTimeInterface $ingevoerd_datum): static
  131.     {
  132.         $this->ingevoerd_datum $ingevoerd_datum;
  133.         return $this;
  134.     }
  135.     public function getIngevoerdDoor(): ?user
  136.     {
  137.         return $this->ingevoerd_door;
  138.     }
  139.     public function setIngevoerdDoor(?user $ingevoerd_door): static
  140.     {
  141.         $this->ingevoerd_door $ingevoerd_door;
  142.         return $this;
  143.     }
  144. }