src\Entity\Produit.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Symfony\Component\Validator\Constraints as Assert;
  5. use Symfony\Component\HttpFoundation\File\File;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\ProduitRepository")
  8.  */
  9. class Produit
  10. {
  11.     /**
  12.      * @ORM\Id()
  13.      * @ORM\GeneratedValue()
  14.      * @ORM\Column(type="integer")
  15.      */
  16.     private $id;
  17.     /**
  18.      * @ORM\ManyToOne(targetEntity="App\Entity\Service", inversedBy="produit")
  19.      */
  20.     private $service;
  21.     /**
  22.      * @ORM\Column(type="string", length=255)
  23.      */
  24.     private $libelle;
  25.     /**
  26.      * @ORM\Column(type="text", nullable=true)
  27.      */
  28.     private $description;
  29.     /**
  30.      * @ORM\Column(type="float", nullable=true)
  31.      */
  32.     private $prix;
  33.     /**
  34.      * @ORM\Column(type="datetime")
  35.      */
  36.     private $createat;
  37.     /**
  38.      * @ORM\Column(type="datetime", nullable=true)
  39.      */
  40.     private $updateat;
  41.  /**
  42.  * @ORM\Column(type="string")
  43.  
  44.  */
  45.     private $image;
  46.     /**
  47.      * @ORM\ManyToOne(targetEntity=Contenupartenaire::class, inversedBy="produit")
  48.      */
  49.     private $partenaire;
  50.     function __construct()
  51.     {
  52.         
  53.         $this->createat= new \DateTime('UTC');
  54.         
  55.     }
  56.     public function getId(): ?int
  57.     {
  58.         return $this->id;
  59.     }
  60.     public function getService(): ?Service
  61.     {
  62.         return $this->service;
  63.     }
  64.     public function setService(?Service $service): self
  65.     {
  66.         $this->service $service;
  67.         return $this;
  68.     }
  69.     public function getLibelle(): ?string
  70.     {
  71.         return $this->libelle;
  72.     }
  73.     public function setLibelle(string $libelle): self
  74.     {
  75.         $this->libelle $libelle;
  76.         return $this;
  77.     }
  78.     public function getDescription(): ?string
  79.     {
  80.         return $this->description;
  81.     }
  82.     public function setDescription(?string $description): self
  83.     {
  84.         $this->description $description;
  85.         return $this;
  86.     }
  87.     public function getPrix(): ?float
  88.     {
  89.         return $this->prix;
  90.     }
  91.     public function setPrix(?float $prix): self
  92.     {
  93.         $this->prix $prix;
  94.         return $this;
  95.     }
  96.     public function getCreateat(): ?\DateTimeInterface
  97.     {
  98.         return $this->createat;
  99.     }
  100.     public function setCreateat(\DateTimeInterface $createat): self
  101.     {
  102.         $this->createat $createat;
  103.         return $this;
  104.     }
  105.     public function getUpdateat(): ?\DateTimeInterface
  106.     {
  107.         return $this->updateat;
  108.     }
  109.     public function setUpdateat(?\DateTimeInterface $updateat): self
  110.     {
  111.         $this->updateat $updateat;
  112.         return $this;
  113.     }
  114.     public function getImage()
  115.     {
  116.         return $this->image;
  117.     }
  118.     public function setImage($image)
  119.     {
  120.         $this->image $image;
  121.         return $this;
  122.     }
  123.     public function getPartenaire(): ?Contenupartenaire
  124.     {
  125.         return $this->partenaire;
  126.     }
  127.     public function setPartenaire(?Contenupartenaire $partenaire): self
  128.     {
  129.         $this->partenaire $partenaire;
  130.         return $this;
  131.     }
  132. }