src/Entity/Orderregel.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\OrderregelRepository;
  4. use App\Entity\Regel;
  5. use Doctrine\DBAL\Types\Types;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassOrderregelRepository::class)]
  8. class Orderregel
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  15.     private ?string $tekst null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?int $bedrag null;
  18.     #[ORM\ManyToOne(inversedBy'orderregels')]
  19.     #[ORM\JoinColumn(nullablefalse)]
  20.     private ?Order $orderid null;
  21.     #[ORM\ManyToOne]
  22.     private ?regel $regel null;
  23.     #[ORM\Column(nullabletrue)]
  24.     private ?int $volgorde null;
  25.     public function getId(): ?int
  26.     {
  27.         return $this->id;
  28.     }
  29.     public function getTekst(): ?string
  30.     {
  31.         return $this->tekst;
  32.     }
  33.     public function setTekst(?string $tekst): static
  34.     {
  35.         $this->tekst $tekst;
  36.         return $this;
  37.     }
  38.     public function getBedrag(): ?int
  39.     {
  40.         return $this->bedrag;
  41.     }
  42.     public function setBedrag(?int $bedrag): static
  43.     {
  44.         $this->bedrag $bedrag;
  45.         return $this;
  46.     }
  47.     public function getOrderid(): ?Order
  48.     {
  49.         return $this->orderid;
  50.     }
  51.     public function setOrderid(?Order $orderid): static
  52.     {
  53.         $this->orderid $orderid;
  54.         return $this;
  55.     }
  56.     public function getRegel(): ?regel
  57.     {
  58.         return $this->regel;
  59.     }
  60.     public function setRegel(?regel $regel): static
  61.     {
  62.         $this->regel $regel;
  63.         return $this;
  64.     }
  65.     public function getVolgorde(): ?int
  66.     {
  67.         return $this->volgorde;
  68.     }
  69.     public function setVolgorde(?int $volgorde): static
  70.     {
  71.         $this->volgorde $volgorde;
  72.         return $this;
  73.     }
  74. }