src/Entity/Product.php line 12

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassProductRepository::class)]
  9. class Product
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column(type'integer')]
  14.     private $id;
  15.     #[ORM\Column(type'string'length255)]
  16.     private $title;
  17.     #[ORM\Column(type'float'nullabletrue)]
  18.     private $price;
  19.     #[ORM\Column(type'string'length255nullabletrue)]
  20.     private $price_unit;
  21.     #[ORM\Column(type'datetime')]
  22.     private $date_creation;
  23.     #[ORM\Column(type'integer'nullabletrue)]
  24.     private $quantity;
  25.     #[ORM\ManyToMany(targetEntityImage::class, inversedBy'products')]
  26.     private $image;
  27.     #[ORM\Column(type'string'length255nullabletrue)]
  28.     private $size;
  29.     #[ORM\Column(type'string'length255nullabletrue)]
  30.     private $paper;
  31.     #[ORM\Column(type'string'length255nullabletrue)]
  32.     private $format;
  33.     #[ORM\Column(type'text'nullabletrue)]
  34.     private $legend;
  35.     #[ORM\Column(type'text'nullabletrue)]
  36.     private $detail;
  37.     #[ORM\Column(type'text'nullabletrue)]
  38.     private $delivery;
  39.     #[ORM\ManyToOne(targetEntityImage::class)]
  40.     private $thumbnail_image_id;
  41.     #[ORM\ManyToOne(targetEntityImage::class)]
  42.     private $thumbnail_image;
  43.     #[ORM\Column(type'boolean'nullabletrue)]
  44.     private $online;
  45.     public function __construct()
  46.     {
  47.         $this->image = new ArrayCollection();
  48.     }
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getTitle(): ?string
  54.     {
  55.         return $this->title;
  56.     }
  57.     public function setTitle(string $title): self
  58.     {
  59.         $this->title $title;
  60.         return $this;
  61.     }
  62.     public function getPrice(): ?float
  63.     {
  64.         return $this->price;
  65.     }
  66.     public function setPrice(?float $price): self
  67.     {
  68.         $this->price $price;
  69.         return $this;
  70.     }
  71.     public function getPriceUnit(): ?string
  72.     {
  73.         return $this->price_unit;
  74.     }
  75.     public function setPriceUnit(?string $price_unit): self
  76.     {
  77.         $this->price_unit $price_unit;
  78.         return $this;
  79.     }
  80.     public function getDateCreation(): ?\DateTimeInterface
  81.     {
  82.         return $this->date_creation;
  83.     }
  84.     public function setDateCreation(\DateTimeInterface $date_creation): self
  85.     {
  86.         $this->date_creation $date_creation;
  87.         return $this;
  88.     }
  89.     public function getQuantity(): ?int
  90.     {
  91.         return $this->quantity;
  92.     }
  93.     public function setQuantity(?int $quantity): self
  94.     {
  95.         $this->quantity $quantity;
  96.         return $this;
  97.     }
  98.     /**
  99.      * @return Collection|image[]
  100.      */
  101.     public function getImage(): Collection
  102.     {
  103.         return $this->image;
  104.     }
  105.     public function addImage(image $image): self
  106.     {
  107.         if (!$this->image->contains($image)) {
  108.             $this->image[] = $image;
  109.         }
  110.         return $this;
  111.     }
  112.     public function removeImage(image $image): self
  113.     {
  114.         $this->image->removeElement($image);
  115.         return $this;
  116.     }
  117.     public function getSize(): ?string
  118.     {
  119.         return $this->size;
  120.     }
  121.     public function setSize(?string $size): self
  122.     {
  123.         $this->size $size;
  124.         return $this;
  125.     }
  126.     public function getPaper(): ?string
  127.     {
  128.         return $this->paper;
  129.     }
  130.     public function setPaper(?string $paper): self
  131.     {
  132.         $this->paper $paper;
  133.         return $this;
  134.     }
  135.     public function getFormat(): ?string
  136.     {
  137.         return $this->format;
  138.     }
  139.     public function setFormat(?string $format): self
  140.     {
  141.         $this->format $format;
  142.         return $this;
  143.     }
  144.     public function getLegend(): ?string
  145.     {
  146.         return $this->legend;
  147.     }
  148.     public function setLegend(?string $legend): self
  149.     {
  150.         $this->legend $legend;
  151.         return $this;
  152.     }
  153.     public function getDetail(): ?string
  154.     {
  155.         return $this->detail;
  156.     }
  157.     public function setDetail(?string $detail): self
  158.     {
  159.         $this->detail $detail;
  160.         return $this;
  161.     }
  162.     public function getDelivery(): ?string
  163.     {
  164.         return $this->delivery;
  165.     }
  166.     public function setDelivery(?string $delivery): self
  167.     {
  168.         $this->delivery $delivery;
  169.         return $this;
  170.     }
  171.     public function getThumbnailImageId(): ?image
  172.     {
  173.         return $this->thumbnail_image_id;
  174.     }
  175.     public function setThumbnailImageId(?image $thumbnail_image_id): self
  176.     {
  177.         $this->thumbnail_image_id $thumbnail_image_id;
  178.         return $this;
  179.     }
  180.     public function getThumbnailImage(): ?image
  181.     {
  182.         return $this->thumbnail_image;
  183.     }
  184.     public function setThumbnailImage(?image $thumbnail_image): self
  185.     {
  186.         $this->thumbnail_image $thumbnail_image;
  187.         return $this;
  188.     }
  189.     public function getOnline(): ?bool
  190.     {
  191.         return $this->online;
  192.     }
  193.     public function setOnline(?bool $online): self
  194.     {
  195.         $this->online $online;
  196.         return $this;
  197.     }
  198.     public function isOnline(): ?bool
  199.     {
  200.         return $this->online;
  201.     }
  202. }