<?php
namespace App\Entity;
use App\Repository\GlobalCategoryRepository;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity(repositoryClass=GlobalCategoryRepository::class)
*/
class GlobalCategory
{
/**
* @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="text")
*/
private $howitwork;
/**
* @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 getHowitwork(): ?string
{
return $this->howitwork;
}
public function setHowitwork(string $howitwork): self
{
$this->howitwork = $howitwork;
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;
}
}