121 lines
2.6 KiB
PHP
121 lines
2.6 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use ApiPlatform\Metadata\ApiProperty;
|
|
use ApiPlatform\Metadata\ApiResource;
|
|
use DateTimeInterface;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Component\Serializer\Attribute\Groups;
|
|
|
|
#[ApiResource(
|
|
normalizationContext: [
|
|
'groups' => ['absence:read', 'employee:read', 'absence_type:read'],
|
|
'datetime_format' => 'Y-m-d',
|
|
],
|
|
denormalizationContext: [
|
|
'datetime_format' => 'Y-m-d',
|
|
]
|
|
)]
|
|
#[ORM\Entity]
|
|
#[ORM\Table(name: 'absences')]
|
|
class Absence
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column(type: 'integer')]
|
|
#[Groups(['absence:read'])]
|
|
private ?int $id = null;
|
|
|
|
#[ApiProperty(readableLink: true)]
|
|
#[ORM\ManyToOne(targetEntity: Employee::class)]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
#[Groups(['absence:read'])]
|
|
private ?Employee $employee = null;
|
|
|
|
#[ApiProperty(readableLink: true)]
|
|
#[ORM\ManyToOne(targetEntity: AbsenceType::class)]
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
#[Groups(['absence:read'])]
|
|
private ?AbsenceType $type = null;
|
|
|
|
#[ORM\Column(type: 'date')]
|
|
#[Groups(['absence:read'])]
|
|
private DateTimeInterface $startDate;
|
|
|
|
#[ORM\Column(type: 'date')]
|
|
#[Groups(['absence:read'])]
|
|
private DateTimeInterface $endDate;
|
|
|
|
#[ORM\Column(type: 'text', nullable: true)]
|
|
#[Groups(['absence:read'])]
|
|
private ?string $comment = null;
|
|
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
public function getEmployee(): ?Employee
|
|
{
|
|
return $this->employee;
|
|
}
|
|
|
|
public function setEmployee(?Employee $employee): self
|
|
{
|
|
$this->employee = $employee;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getType(): ?AbsenceType
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
public function setType(?AbsenceType $type): self
|
|
{
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getStartDate(): DateTimeInterface
|
|
{
|
|
return $this->startDate;
|
|
}
|
|
|
|
public function setStartDate(DateTimeInterface $startDate): self
|
|
{
|
|
$this->startDate = $startDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getEndDate(): DateTimeInterface
|
|
{
|
|
return $this->endDate;
|
|
}
|
|
|
|
public function setEndDate(DateTimeInterface $endDate): self
|
|
{
|
|
$this->endDate = $endDate;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getComment(): ?string
|
|
{
|
|
return $this->comment;
|
|
}
|
|
|
|
public function setComment(?string $comment): self
|
|
{
|
|
$this->comment = $comment;
|
|
|
|
return $this;
|
|
}
|
|
}
|