60 lines
1018 B
PHP
60 lines
1018 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace App\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
#[ORM\Table(name: 'film_format', schema: 'collection')]
|
|
#[ORM\Entity]
|
|
class FilmFormat
|
|
{
|
|
#[ORM\Id]
|
|
#[ORM\GeneratedValue]
|
|
#[ORM\Column(type: 'integer')]
|
|
private int $id;
|
|
|
|
#[ORM\Column(name: 'number_id', type: 'integer')]
|
|
private int $numberId;
|
|
|
|
#[ORM\Column(name: 'name', type: 'string')]
|
|
private string $name;
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getId(): ?int
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getNumberId(): ?int
|
|
{
|
|
return $this->numberId;
|
|
}
|
|
|
|
public function setNumberId(int $numberId): self
|
|
{
|
|
$this->numberId = $numberId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName(): ?string
|
|
{
|
|
return $this->name;
|
|
}
|
|
|
|
public function setName(string $name): self
|
|
{
|
|
$this->name = $name;
|
|
|
|
return $this;
|
|
}
|
|
}
|