<?phpnamespace Webkul\UVDesk\CoreFrameworkBundle\Entity;use Doctrine\ORM\Mapping as ORM;/** * TicketPriority * @ORM\Entity(repositoryClass=null) * @ORM\HasLifecycleCallbacks() * @ORM\Table(name="uv_ticket_priority") */class TicketPriority{ /** * @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; /** * Get id * * @return integer */ public function getId() { return $this->id; } /** * Set code * * @param string $code * * @return TicketPriority */ 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 TicketPriority */ 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 TicketPriority */ public function setColorCode($colorCode) { $this->colorCode = $colorCode; return $this; } /** * Get colorCode * * @return string */ public function getColorCode() { return $this->colorCode; }}