162 lines
3.6 KiB
PHP
162 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Entity\Groups;
|
|
|
|
use App\Entity\BlameableEntity;
|
|
use App\Entity\BlameableEntityInterface;
|
|
use App\Entity\TimestampableEntity;
|
|
use App\Entity\TimestampableEntityInterface;
|
|
use App\Enum\Groups\AdditionalServiceType;
|
|
use App\Repository\Groups\AdditionalServiceRepository;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
#[ORM\Entity(repositoryClass: AdditionalServiceRepository::class)]
|
|
class AdditionalService implements BlameableEntityInterface, TimestampableEntityInterface
|
|
{
|
|
use BlameableEntity;
|
|
use TimestampableEntity;
|
|
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column]
|
|
private ?int $id = null;
|
|
|
|
#[ORM\ManyToOne(inversedBy: 'additionalServices')]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
private ?Accommodation $accommodation = null;
|
|
|
|
#[ORM\Column(length: 255)]
|
|
#[Assert\NotBlank(message: 'required')]
|
|
private ?string $label = null;
|
|
|
|
#[ORM\Column(type: 'text', nullable: true)]
|
|
private ?string $description = null;
|
|
|
|
#[ORM\Column]
|
|
#[Assert\NotNull(message: 'required')]
|
|
private ?int $price = null;
|
|
|
|
#[ORM\Column(length: 20, enumType: AdditionalServiceType::class)]
|
|
#[Assert\NotNull(message: 'required')]
|
|
private ?AdditionalServiceType $type = null;
|
|
|
|
#[ORM\Column(type: Types::DATE_IMMUTABLE)]
|
|
#[Assert\NotNull(message: 'required')]
|
|
private ?\DateTimeImmutable $dateFrom = null;
|
|
|
|
#[ORM\Column(type: Types::DATE_IMMUTABLE)]
|
|
#[Assert\NotNull(message: 'required')]
|
|
private ?\DateTimeImmutable $dateTo = null;
|
|
|
|
#[ORM\Column(length: 128, nullable: true)]
|
|
private ?string $selectionGroup = null;
|
|
|
|
public function __clone()
|
|
{
|
|
$this->id = null;
|
|
}
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getAccommodation(): ?Accommodation
|
|
{
|
|
return $this->accommodation;
|
|
}
|
|
|
|
public function setAccommodation(?Accommodation $accommodation): self
|
|
{
|
|
$this->accommodation = $accommodation;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getLabel(): ?string
|
|
{
|
|
return $this->label;
|
|
}
|
|
|
|
public function setLabel(string $label): self
|
|
{
|
|
$this->label = $label;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDescription(): ?string
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
public function setDescription(?string $description): self
|
|
{
|
|
$this->description = $description;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getPrice(): ?int
|
|
{
|
|
return $this->price;
|
|
}
|
|
|
|
public function setPrice(int $price): self
|
|
{
|
|
$this->price = $price;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getType(): ?AdditionalServiceType
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
public function setType(AdditionalServiceType $type): self
|
|
{
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDateFrom(): ?\DateTimeImmutable
|
|
{
|
|
return $this->dateFrom;
|
|
}
|
|
|
|
public function setDateFrom(\DateTimeImmutable $dateFrom): self
|
|
{
|
|
$this->dateFrom = $dateFrom;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getDateTo(): ?\DateTimeImmutable
|
|
{
|
|
return $this->dateTo;
|
|
}
|
|
|
|
public function setDateTo(\DateTimeImmutable $dateTo): self
|
|
{
|
|
$this->dateTo = $dateTo;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getSelectionGroup(): ?string
|
|
{
|
|
return $this->selectionGroup;
|
|
}
|
|
|
|
public function setSelectionGroup(?string $selectionGroup): self
|
|
{
|
|
$this->selectionGroup = $selectionGroup;
|
|
|
|
return $this;
|
|
}
|
|
}
|