<?php
namespace App\Entity\SecurityDocument;
use App\Repository\SecurityDocument\VocabularyRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=VocabularyRepository::class)
* @ORM\Table(name="security_document_vocabulary")
*/
class Vocabulary
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $templateProperty;
/**
* @ORM\Column(type="string", length=255)
*/
private $replacementValue;
/**
* @ORM\Column(type="string", length=255)
*/
private $description;
public function getId(): ?int
{
return $this->id;
}
public function getTemplateProperty(): ?string
{
return $this->templateProperty;
}
public function setTemplateProperty(string $templateProperty): self
{
$this->templateProperty = $templateProperty;
return $this;
}
public function getReplacementValue(): ?string
{
return $this->replacementValue;
}
public function setReplacementValue(string $replacementValue): self
{
$this->replacementValue = $replacementValue;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
}