<?php
namespace App\Entity;
use App\Repository\CatalogueRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=CatalogueRepository::class)
*/
class Catalogue
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $Document;
public function getId(): ?int
{
return $this->id;
}
public function getDocument(): ?string
{
return $this->Document;
}
public function setDocument(?string $Document): self
{
$this->Document = $Document;
return $this;
}
}