vendor/uvdesk/support-center-bundle/Entity/SolutionCategoryMapping.php line 12

Open in your IDE?
  1. <?php
  2. namespace Webkul\UVDesk\SupportCenterBundle\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * SolutionCategoryMapping
  6.  * @ORM\Entity
  7.  * @ORM\Table(name="uv_solution_category_mapping")
  8.  */
  9. class SolutionCategoryMapping
  10. {
  11.     /**
  12.      * @var integer
  13.      * @ORM\Id
  14.      * @ORM\Column(type="integer")
  15.      * @ORM\GeneratedValue
  16.      */
  17.     private $id;
  18.     /**
  19.      * @var integer
  20.      * @ORM\Column(type="integer")
  21.      */
  22.     private $solutionId;
  23.     /**
  24.      * @var integer
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $categoryId;
  28.     /**
  29.      * Get id
  30.      *
  31.      * @return integer 
  32.      */
  33.     public function getId()
  34.     {
  35.         return $this->id;
  36.     }
  37.     /**
  38.      * Set solutionId
  39.      *
  40.      * @param integer $solutionId
  41.      * @return SolutionCategoryMapping
  42.      */
  43.     public function setSolutionId($solutionId)
  44.     {
  45.         $this->solutionId $solutionId;
  46.         return $this;
  47.     }
  48.     /**
  49.      * Get solutionId
  50.      *
  51.      * @return integer 
  52.      */
  53.     public function getSolutionId()
  54.     {
  55.         return $this->solutionId;
  56.     }
  57.     /**
  58.      * Set categoryId
  59.      *
  60.      * @param integer $categoryId
  61.      * @return SolutionCategoryMapping
  62.      */
  63.     public function setCategoryId($categoryId)
  64.     {
  65.         $this->categoryId $categoryId;
  66.         return $this;
  67.     }
  68.     /**
  69.      * Get categoryId
  70.      *
  71.      * @return integer 
  72.      */
  73.     public function getCategoryId()
  74.     {
  75.         return $this->categoryId;
  76.     }
  77. }