src/Entity/Media.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\MediaRepository;
  4. use Doctrine\DBAL\Types\Types;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ORM\Entity(repositoryClassMediaRepository::class)]
  7. class Media
  8. {
  9.     const TYPE_MEDIA_BANNER_APP "banner_app";
  10.     const TYPE_MEDIA_BANNER_PC "bannerPc";
  11.     const TYPE_MEDIA_BANNER_TABLET "banner_tablet";
  12.     const TYPE_MEDIA_FORM_REQUEST "form_request";
  13.     const TYPE_MEDIA_GUIDE "pdfGuide";
  14.     const TYPE_MEDIA_FRONT_FORM "front_form";
  15.     const TYPE_MEDIA_VIGNETTE_FORM_REQUEST "vignette_form_request";
  16.  
  17.     #[ORM\Id]
  18.     #[ORM\GeneratedValue]
  19.     #[ORM\Column]
  20.     private ?int $id null;
  21.     #[ORM\Column(length255nullabletrue)]
  22.     private ?string $origin null;
  23.     #[ORM\Column(length255nullabletrue)]
  24.     private ?string $idOrigin null;
  25.     #[ORM\Column(length255nullabletrue)]
  26.     private ?string $file null;
  27.     #[ORM\Column(length255nullabletrue)]
  28.     private ?string $title null;
  29.     #[ORM\Column(length255nullabletrue)]
  30.     private ?string $extension null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $taille null;
  33.     #[ORM\Column(typeTypes::DATE_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $deletedAt null;
  35.     #[ORM\Column(length255nullabletrue)]
  36.     private ?string $typeMedia null;
  37.     #[ORM\Column(nullabletrue)]
  38.     private ?int $position null;
  39.     #[ORM\Column(length255nullabletrue)]
  40.     private ?string $path null;
  41.     public function getId(): ?int
  42.     {
  43.         return $this->id;
  44.     }
  45.     public function getOrigin(): ?string
  46.     {
  47.         return $this->origin;
  48.     }
  49.     public function setOrigin(?string $origin): self
  50.     {
  51.         $this->origin $origin;
  52.         return $this;
  53.     }
  54.     public function getIdOrigin(): ?string
  55.     {
  56.         return $this->idOrigin;
  57.     }
  58.     public function setIdOrigin(?string $idOrigin): self
  59.     {
  60.         $this->idOrigin $idOrigin;
  61.         return $this;
  62.     }
  63.     public function getFile(): ?string
  64.     {
  65.         return $this->file;
  66.     }
  67.     public function setFile(?string $file): self
  68.     {
  69.         $this->file $file;
  70.         return $this;
  71.     }
  72.     public function getTitle(): ?string
  73.     {
  74.         return $this->title;
  75.     }
  76.     public function setTitle(?string $title): self
  77.     {
  78.         $this->title $title;
  79.         return $this;
  80.     }
  81.     public function getExtension(): ?string
  82.     {
  83.         return $this->extension;
  84.     }
  85.     public function setExtension(?string $extension): self
  86.     {
  87.         $this->extension $extension;
  88.         return $this;
  89.     }
  90.     public function getTaille(): ?string
  91.     {
  92.         return $this->taille;
  93.     }
  94.     public function setTaille(?string $taille): self
  95.     {
  96.         $this->taille $taille;
  97.         return $this;
  98.     }
  99.     public function getDeletedAt(): ?\DateTimeInterface
  100.     {
  101.         return $this->deletedAt;
  102.     }
  103.     public function setDeletedAt(?\DateTimeInterface $deletedAt): self
  104.     {
  105.         $this->deletedAt $deletedAt;
  106.         return $this;
  107.     }
  108.     public function getTypeMedia(): ?string
  109.     {
  110.         return $this->typeMedia;
  111.     }
  112.     public function setTypeMedia(?string $typeMedia): self
  113.     {
  114.         $this->typeMedia $typeMedia;
  115.         return $this;
  116.     }
  117.     public function getPosition(): ?int
  118.     {
  119.         return $this->position;
  120.     }
  121.     public function setPosition(?int $position): self
  122.     {
  123.         $this->position $position;
  124.         return $this;
  125.     }
  126.     public function getPath(): ?string
  127.     {
  128.         return $this->path;
  129.     }
  130.     public function setPath(?string $path): self
  131.     {
  132.         $this->path $path;
  133.         return $this;
  134.     }
  135. }