src/Entity/ProductImage.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductImageRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ProductImageRepository::class)
  7.  */
  8. class ProductImage
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $productId;
  20.     /**
  21.      * @ORM\Column(type="integer")
  22.      */
  23.     private $variationId;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $image;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $imageType;
  32.     /**
  33.      * @ORM\Column(type="integer")
  34.      */
  35.     private $weight;
  36.     /**
  37.      * @ORM\Column(type="datetime")
  38.      */
  39.     private $created;
  40.     /**
  41.      * @ORM\Column(type="boolean")
  42.      */
  43.     private $status;
  44.     public function getId(): ?int
  45.     {
  46.         return $this->id;
  47.     }
  48.     public function getProductId(): ?int
  49.     {
  50.         return $this->productId;
  51.     }
  52.     public function setProductId(int $productId): self
  53.     {
  54.         $this->productId $productId;
  55.         return $this;
  56.     }
  57.     public function getVariationId(): ?int
  58.     {
  59.         return $this->variationId;
  60.     }
  61.     public function setVariationId(int $variationId): self
  62.     {
  63.         $this->variationId $variationId;
  64.         return $this;
  65.     }
  66.     public function getImage(): ?string
  67.     {
  68.         return $this->image;
  69.     }
  70.     public function setImage(string $image): self
  71.     {
  72.         $this->image $image;
  73.         return $this;
  74.     }
  75.     public function getImageType(): ?string
  76.     {
  77.         return $this->imageType;
  78.     }
  79.     public function setImageType(string $imageType): self
  80.     {
  81.         $this->imageType $imageType;
  82.         return $this;
  83.     }
  84.     public function getWeight(): ?int
  85.     {
  86.         return $this->weight;
  87.     }
  88.     public function setWeight(int $weight): self
  89.     {
  90.         $this->weight $weight;
  91.         return $this;
  92.     }
  93.     public function getCreated(): ?\DateTimeInterface
  94.     {
  95.         return $this->created;
  96.     }
  97.     public function setCreated(\DateTimeInterface $created): self
  98.     {
  99.         $this->created $created;
  100.         return $this;
  101.     }
  102.     public function getStatus(): ?bool
  103.     {
  104.         return $this->status;
  105.     }
  106.     public function setStatus(bool $status): self
  107.     {
  108.         $this->status $status;
  109.         return $this;
  110.     }
  111. }