src/Entity/CRM/TranscriptionDicitionary.php line 10
<?phpnamespace App\Entity\CRM;use App\Repository\CRM\TranscriptionDicitionaryRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;#[ORM\Entity(repositoryClass: TranscriptionDicitionaryRepository::class)]class TranscriptionDicitionary{#[ORM\Id]#[ORM\GeneratedValue]#[ORM\Column]private ?int $id = null;#[ORM\Column(length: 255)]private ?string $term = null;#[ORM\Column(length: 255)]private ?string $category = null;#[ORM\Column]private ?int $matchType = null;#[ORM\Column(length: 255, nullable: true)]private ?string $suggestedReplacement = null;#[ORM\Column(type: Types::TEXT, nullable: true)]private ?string $description = null;#[ORM\Column]private ?bool $isActive = null;public function getId(): ?int{return $this->id;}public function getTerm(): ?string{return $this->term;}public function setTerm(string $term): static{$this->term = $term;return $this;}public function getCategory(): ?string{return $this->category;}public function setCategory(string $category): static{$this->category = $category;return $this;}public function getMatchType(): ?int{return $this->matchType;}public function setMatchType(int $matchType): static{$this->matchType = $matchType;return $this;}public function getSuggestedReplacement(): ?string{return $this->suggestedReplacement;}public function setSuggestedReplacement(?string $suggestedReplacement): static{$this->suggestedReplacement = $suggestedReplacement;return $this;}public function getDescription(): ?string{return $this->description;}public function setDescription(?string $description): static{$this->description = $description;return $this;}public function isIsActive(): ?bool{return $this->isActive;}public function setIsActive(bool $isActive): static{$this->isActive = $isActive;return $this;}}