<?php
namespace App\Entity;
use App\Entity\Base\AbstractEntity;
use App\Repository\ContractStatusRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ContractStatusRepository::class)
*/
class ContractStatus extends AbstractEntity
{
const CONTRACT_STATUS_LETREHOZOTT = 1;
const CONTRACT_STATUS_ELKULDOTT = 2;
const CONTRACT_STATUS_ALAIRT = 3;
const CONTRACT_STATUS_FELFUGESZTETT = 4;
const CONTRACT_STATUS_VISSZAUTASITOTT = 5;
const CONTRACT_STATUS_KIVITELEZETT = 5;
/**
* @ORM\Column(type="string", length=50)
*/
private $name;
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
}