src/Entity/DocumentiRegistroAttivita.php line 12
<?phpnamespace App\Entity;use App\Repository\DocumentiRegistroAttivitaRepository;use Doctrine\DBAL\Types\Types;use Doctrine\ORM\Mapping as ORM;/*** @ORM\Entity(repositoryClass=DocumentiRegistroAttivitaRepository::class)*/class DocumentiRegistroAttivita{/*** @ORM\Id* @ORM\GeneratedValue* @ORM\Column(type="integer")*/private $id;/*** @ORM\ManyToOne(targetEntity="App\Entity\Documenti")*/private $identificativoDocumento;/*** @ORM\Column(type="integer", nullable=true)*/private $riga;/*** @ORM\Column(type="datetime", nullable=true)*/private $dataCreazione;/*** @ORM\Column(type="datetime", nullable=true)*/private $dataModifica;/*** @ORM\ManyToOne(targetEntity="User")* @ORM\JoinColumn(name="utente_modifica_id", referencedColumnName="id", onDelete="SET NULL")*/private $utente;/*** @ORM\Column(type="string", length=255, nullable=true)*/private $categoria;/*** @ORM\Column(type="string", length=255, nullable=true)*/private $descrizione;public function getId(): ?int{return $this->id;}public function getRiga(): ?int{return $this->riga;}public function setRiga(?int $riga): static{$this->riga = $riga;return $this;}public function getDataCreazione(): ?\DateTimeInterface{return $this->dataCreazione;}public function setDataCreazione(?\DateTimeInterface $dataCreazione): static{$this->dataCreazione = $dataCreazione;return $this;}public function getDataModifica(): ?\DateTimeInterface{return $this->dataModifica;}public function setDataModifica(?\DateTimeInterface $dataModifica): static{$this->dataModifica = $dataModifica;return $this;}public function getCategoria(): ?string{return $this->categoria;}public function setCategoria(?string $categoria): static{$this->categoria = $categoria;return $this;}public function getDescrizione(): ?string{return $this->descrizione;}public function setDescrizione(?string $descrizione): static{$this->descrizione = $descrizione;return $this;}public function getIdentificativoDocumento(): ?Documenti{return $this->identificativoDocumento;}public function setIdentificativoDocumento(?Documenti $identificativoDocumento): static{$this->identificativoDocumento = $identificativoDocumento;return $this;}public function getUtente(): ?User{return $this->utente;}public function setUtente(?User $utente): static{$this->utente = $utente;return $this;}}