src/Entity/ProductCategory.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductCategoryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ProductCategoryRepository::class)
  7.  */
  8. class ProductCategory
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $name;
  20.     /**
  21.      * @ORM\Column(type="text")
  22.      */
  23.     private $description;
  24.     /**
  25.      * @ORM\Column(type="string", length=255)
  26.      */
  27.     private $image;
  28.     /**
  29.      * @ORM\Column(type="string", length=255)
  30.      */
  31.     private $templatePack;
  32.     /**
  33.      * @ORM\Column(type="string", length=255)
  34.      */
  35.     private $designWidth;
  36.     /**
  37.      * @ORM\Column(type="string", length=255)
  38.      */
  39.     private $designHeight;
  40.     /**
  41.      * @ORM\Column(type="integer")
  42.      */
  43.     private $globalCategory;
  44.     /**
  45.      * @ORM\Column(type="integer")
  46.      */
  47.     private $uid;
  48.     /**
  49.      * @ORM\Column(type="boolean")
  50.      */
  51.     private $status;
  52.     public function getId(): ?int
  53.     {
  54.         return $this->id;
  55.     }
  56.     public function getName(): ?string
  57.     {
  58.         return $this->name;
  59.     }
  60.     public function setName(string $name): self
  61.     {
  62.         $this->name $name;
  63.         return $this;
  64.     }
  65.     public function getDescription(): ?string
  66.     {
  67.         return $this->description;
  68.     }
  69.     public function setDescription(string $description): self
  70.     {
  71.         $this->description $description;
  72.         return $this;
  73.     }
  74.     public function getImage(): ?string
  75.     {
  76.         return $this->image;
  77.     }
  78.     public function setImage(string $image): self
  79.     {
  80.         $this->image $image;
  81.         return $this;
  82.     }
  83.     public function getTemplatePack(): ?string
  84.     {
  85.         return $this->templatePack;
  86.     }
  87.     public function setTemplatePack(string $templatePack): self
  88.     {
  89.         $this->templatePack $templatePack;
  90.         return $this;
  91.     }
  92.     public function getDesignWidth(): ?string
  93.     {
  94.         return $this->designWidth;
  95.     }
  96.     public function setDesignWidth(string $designWidth): self
  97.     {
  98.         $this->designWidth $designWidth;
  99.         return $this;
  100.     }
  101.     public function getDesignHeight(): ?string
  102.     {
  103.         return $this->designHeight;
  104.     }
  105.     public function setDesignHeight(string $designHeight): self
  106.     {
  107.         $this->designHeight $designHeight;
  108.         return $this;
  109.     }
  110.     public function getGlobalCategory(): ?int
  111.     {
  112.         return $this->globalCategory;
  113.     }
  114.     public function setGlobalCategory(int $globalCategory): self
  115.     {
  116.         $this->globalCategory $globalCategory;
  117.         return $this;
  118.     }
  119.     public function getUid(): ?int
  120.     {
  121.         return $this->uid;
  122.     }
  123.     public function setUid(int $uid): self
  124.     {
  125.         $this->uid $uid;
  126.         return $this;
  127.     }
  128.     public function getStatus(): ?bool
  129.     {
  130.         return $this->status;
  131.     }
  132.     public function setStatus(bool $status): self
  133.     {
  134.         $this->status $status;
  135.         return $this;
  136.     }
  137. }