src/Flexy/FrontBundle/Entity/MasterSlider.php line 11

  1. <?php
  2. namespace App\Flexy\FrontBundle\Entity;
  3. use ApiPlatform\Core\Annotation\ApiResource;
  4. use App\Flexy\FrontBundle\Repository\MasterSliderRepository;
  5. use Doctrine\ORM\Mapping as ORM;
  6. #[ApiResource]
  7. #[ORM\Entity(repositoryClassMasterSliderRepository::class)]
  8. class MasterSlider
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column(type'integer')]
  13.     private $id;
  14.     #[ORM\Column(type'string'length255nullabletrue)]
  15.     private ?string $image null;
  16.     #[ORM\Column(type'string'length255nullabletrue)]
  17.     private ?string $grandTitre null;
  18.     #[ORM\Column(type'string'length255nullabletrue)]
  19.     private ?string $petitTitre null;
  20.     #[ORM\Column(type'string'length255nullabletrue)]
  21.     private ?string $textePrix null;
  22.     #[ORM\Column(type'string'length255nullabletrue)]
  23.     private ?string $lien null;
  24.     #[ORM\Column(type'string'length255nullabletrue)]
  25.     private ?string $titreBtn null;
  26.     #[ORM\Column(type'boolean'nullabletrue)]
  27.     private ?bool $isEnabled null;
  28.     public function getId(): ?int
  29.     {
  30.         return $this->id;
  31.     }
  32.     public function getImage(): ?string
  33.     {
  34.         return $this->image;
  35.     }
  36.     public function setImage(?string $image): self
  37.     {
  38.         $this->image $image;
  39.         return $this;
  40.     }
  41.     public function getGrandTitre(): ?string
  42.     {
  43.         return $this->grandTitre;
  44.     }
  45.     public function setGrandTitre(?string $grandTitre): self
  46.     {
  47.         $this->grandTitre $grandTitre;
  48.         return $this;
  49.     }
  50.     public function getPetitTitre(): ?string
  51.     {
  52.         return $this->petitTitre;
  53.     }
  54.     public function setPetitTitre(?string $petitTitre): self
  55.     {
  56.         $this->petitTitre $petitTitre;
  57.         return $this;
  58.     }
  59.     public function getTextePrix(): ?string
  60.     {
  61.         return $this->textePrix;
  62.     }
  63.     public function setTextePrix(?string $textePrix): self
  64.     {
  65.         $this->textePrix $textePrix;
  66.         return $this;
  67.     }
  68.     public function getLien(): ?string
  69.     {
  70.         return $this->lien;
  71.     }
  72.     public function setLien(?string $lien): self
  73.     {
  74.         $this->lien $lien;
  75.         return $this;
  76.     }
  77.     public function getTitreBtn(): ?string
  78.     {
  79.         return $this->titreBtn;
  80.     }
  81.     public function setTitreBtn(?string $titreBtn): self
  82.     {
  83.         $this->titreBtn $titreBtn;
  84.         return $this;
  85.     }
  86.     public function getIsEnabled(): ?bool
  87.     {
  88.         return $this->isEnabled;
  89.     }
  90.     public function setIsEnabled(?bool $isEnabled): self
  91.     {
  92.         $this->isEnabled $isEnabled;
  93.         return $this;
  94.     }
  95. }