<?phpnamespace Webkul\UVDesk\CoreFrameworkBundle\Entity;use Doctrine\ORM\Mapping as ORM;/** * TicketStatus * @ORM\Entity(repositoryClass=null) * @ORM\HasLifecycleCallbacks() * @ORM\Table(name="uv_ticket_status") */class TicketStatus{ /** * @var integer * @ORM\Id() * @ORM\Column(type="integer") * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @var string * @ORM\Column(type="string", length=191, unique=true) */ private $code; /** * @var string * @ORM\Column(type="text", nullable=true) */ private $description; /** * @var string * @ORM\Column(type="string", length=191, nullable=true) */ private $colorCode; /** * @var integer * @ORM\Column(type="integer", nullable=true) */ private $sortOrder; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set code * * @param string $code * * @return TicketStatus */ public function setCode($code) { $this->code = $code; return $this; } /** * Get code * * @return string */ public function getCode() { return $this->code; } /** * Set description * * @param string $description * * @return TicketStatus */ public function setDescription($description) { $this->description = $description; return $this; } /** * Get description * * @return string */ public function getDescription() { return $this->description; } /** * Set colorCode * * @param string $colorCode * * @return TicketStatus */ public function setColorCode($colorCode) { $this->colorCode = $colorCode; return $this; } /** * Get colorCode * * @return string */ public function getColorCode() { return $this->colorCode; } /** * Set sortOrder * * @param integer $sortOrder * * @return TicketStatus */ public function setSortOrder($sortOrder) { $this->sortOrder = $sortOrder; return $this; } /** * Get sortOrder * * @return integer */ public function getSortOrder() { return $this->sortOrder; }}