<?php
namespace App\Entity;
use App\Entity\User;
use App\Entity\Movie;
use Doctrine\ORM\Mapping as ORM;
use App\Repository\NoteRepository;
/**
* @ORM\Entity(repositoryClass=NoteRepository::class)
*/
class Note
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255, nullable=true)
*/
private $noteDesc;
/**
* @ORM\Column(type="integer", nullable=true)
*/
private $note;
/**
* @ORM\ManyToOne(targetEntity=User::class, inversedBy="notes")
* @ORM\JoinColumn(nullable=false)
*/
private $idUser;
/**
* @ORM\ManyToOne(targetEntity=Movie::class, inversedBy="notes")
* @ORM\JoinColumn(nullable=false)
*/
private $idMovie;
public function getId(): ?int
{
return $this->id;
}
public function getNoteDesc(): ?string
{
return $this->noteDesc;
}
public function setNoteDesc(?string $noteDesc): self
{
$this->noteDesc = $noteDesc;
return $this;
}
public function getNote(): ?int
{
return $this->note;
}
public function setNote(?int $note): self
{
$this->note = $note;
return $this;
}
public function getIdUser(): ?User
{
return $this->idUser;
}
public function setIdUser(?User $idUser): self
{
$this->idUser = $idUser;
return $this;
}
public function getIdMovie(): ?Movie
{
return $this->idMovie;
}
public function setIdMovie(?Movie $idMovie): self
{
$this->idMovie = $idMovie;
return $this;
}
}