<?php
namespace App\Entity;
use App\Repository\ProductCategoryRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=ProductCategoryRepository::class)
*/
class ProductCategory
{
/**
* @ORM\Id
* @ORM\GeneratedValue
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\Column(type="text")
*/
private $description;
/**
* @ORM\Column(type="string", length=255)
*/
private $image;
/**
* @ORM\Column(type="string", length=255)
*/
private $templatePack;
/**
* @ORM\Column(type="string", length=255)
*/
private $designWidth;
/**
* @ORM\Column(type="string", length=255)
*/
private $designHeight;
/**
* @ORM\Column(type="integer")
*/
private $globalCategory;
/**
* @ORM\Column(type="integer")
*/
private $uid;
/**
* @ORM\Column(type="boolean")
*/
private $status;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function getDescription(): ?string
{
return $this->description;
}
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
public function getImage(): ?string
{
return $this->image;
}
public function setImage(string $image): self
{
$this->image = $image;
return $this;
}
public function getTemplatePack(): ?string
{
return $this->templatePack;
}
public function setTemplatePack(string $templatePack): self
{
$this->templatePack = $templatePack;
return $this;
}
public function getDesignWidth(): ?string
{
return $this->designWidth;
}
public function setDesignWidth(string $designWidth): self
{
$this->designWidth = $designWidth;
return $this;
}
public function getDesignHeight(): ?string
{
return $this->designHeight;
}
public function setDesignHeight(string $designHeight): self
{
$this->designHeight = $designHeight;
return $this;
}
public function getGlobalCategory(): ?int
{
return $this->globalCategory;
}
public function setGlobalCategory(int $globalCategory): self
{
$this->globalCategory = $globalCategory;
return $this;
}
public function getUid(): ?int
{
return $this->uid;
}
public function setUid(int $uid): self
{
$this->uid = $uid;
return $this;
}
public function getStatus(): ?bool
{
return $this->status;
}
public function setStatus(bool $status): self
{
$this->status = $status;
return $this;
}
}