src/Entity/FilmProjectProgressReportFile.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\FilmProjectProgressReportFileRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassFilmProjectProgressReportFileRepository::class)]
  7. class FilmProjectProgressReportFile
  8. {
  9.     #[ORM\Id]
  10.     #[ORM\GeneratedValue]
  11.     #[ORM\Column]
  12.     private ?int $id null;
  13.     #[ORM\ManyToOne(inversedBy'filmProjectProgressReportFiles')]
  14.     private ?FilmProjectProgressReport $filmProjectProgressReport null;
  15.     #[ORM\Column(length255nullabletrue)]
  16.     private ?string $filePath null;
  17.     #[ORM\Column(length255nullabletrue)]
  18.     private ?string $fileName null;
  19.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  20.     private ?\DateTimeInterface $createdAt null;
  21.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  22.     private ?\DateTimeInterface $modifiedAt null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $contentVersionId null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $originalName null;
  27.     public function getId(): ?int
  28.     {
  29.         return $this->id;
  30.     }
  31.     public function getFilmProjectProgressReport(): ?FilmProjectProgressReport
  32.     {
  33.         return $this->filmProjectProgressReport;
  34.     }
  35.     public function setFilmProjectProgressReport(?FilmProjectProgressReport $filmProjectProgressReport): static
  36.     {
  37.         $this->filmProjectProgressReport $filmProjectProgressReport;
  38.         return $this;
  39.     }
  40.     public function getFilePath(): ?string
  41.     {
  42.         return $this->filePath;
  43.     }
  44.     public function setFilePath(?string $filePath): static
  45.     {
  46.         $this->filePath $filePath;
  47.         return $this;
  48.     }
  49.     public function getFileName(): ?string
  50.     {
  51.         return $this->fileName;
  52.     }
  53.     public function setFileName(?string $fileName): static
  54.     {
  55.         $this->fileName $fileName;
  56.         return $this;
  57.     }
  58.     public function getCreatedAt(): ?\DateTimeInterface
  59.     {
  60.         return $this->createdAt;
  61.     }
  62.     public function setCreatedAt(?\DateTimeInterface $createdAt): static
  63.     {
  64.         $this->createdAt $createdAt;
  65.         return $this;
  66.     }
  67.     public function getModifiedAt(): ?\DateTimeInterface
  68.     {
  69.         return $this->modifiedAt;
  70.     }
  71.     public function setModifiedAt(?\DateTimeInterface $modifiedAt): static
  72.     {
  73.         $this->modifiedAt $modifiedAt;
  74.         return $this;
  75.     }
  76.     public function getContentVersionId(): ?string
  77.     {
  78.         return $this->contentVersionId;
  79.     }
  80.     public function setContentVersionId(?string $contentVersionId): static
  81.     {
  82.         $this->contentVersionId $contentVersionId;
  83.         return $this;
  84.     }
  85.     public function getOriginalName(): ?string
  86.     {
  87.         return $this->originalName;
  88.     }
  89.     public function setOriginalName(?string $originalName): static
  90.     {
  91.         $this->originalName $originalName;
  92.         return $this;
  93.     }
  94. }