src/CoreBundle/Entity/JustificationDocument.php
<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity]
#[ORM\Table(name: 'justification_document')]
class JustificationDocument
{
#[ORM\Id]
#[ORM\GeneratedValue(strategy: 'AUTO')]
#[ORM\Column(type: 'integer')]
private ?int $id = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $code = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $name = null;
#[ORM\Column(type: 'integer', nullable: true)]
private ?int $validityDuration = null;
#[ORM\Column(type: 'text', nullable: true)]
private ?string $comment = null;
#[ORM\Column(type: 'integer', nullable: true)]
private ?int $dateManualOn = null;
public function getId(): ?int
{
return $this->id;
}
public function getCode(): ?string
{
return $this->code;
}
public function setCode(?string $code): self
{
$this->code = $code;
return $this;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(?string $name): self
{
$this->name = $name;
return $this;
}
public function getValidityDuration(): ?int
{
return $this->validityDuration;
}
public function setValidityDuration(?int $validityDuration): self
{
$this->validityDuration = $validityDuration;
return $this;
}
public function getComment(): ?string
{
return $this->comment;
}
public function setComment(?string $comment): self
{
$this->comment = $comment;
return $this;
}
public function getDateManualOn(): ?int
{
return $this->dateManualOn;
}
public function setDateManualOn(?int $dateManualOn): self
{
$this->dateManualOn = $dateManualOn;
return $this;
}
}