123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * CQuizQuestionRelCategory
- *
- * @ORM\Table(name="c_quiz_question_rel_category")
- * @ORM\Entity(repositoryClass="Entity\Repository\CQuizQuestionRelCategoryRepository")
- */
- class CQuizQuestionRelCategory
- {
- /**
- * @var integer
- *
- * @ORM\Column(name="iid", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $iid;
- /**
- * @var integer
- *
- * @ORM\Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="NONE")
- */
- private $cId;
- /**
- * @var integer
- *
- * @ORM\Column(name="question_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="NONE")
- */
- private $questionId;
- /**
- * @var integer
- *
- * @ORM\Column(name="category_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $categoryId;
- /** Relationships */
- /**
- * @ORM\ManyToOne(targetEntity="CQuizCategory")
- * @ORM\JoinColumn(name="category_id", referencedColumnName="iid")
- */
- private $category;
- /**
- * @ORM\ManyToOne(targetEntity="CQuizQuestion")
- * @ORM\JoinColumn(name="question_id", referencedColumnName="iid")
- */
- private $question;
- public function __construct(CQuizCategory $category, CQuizQuestion $question)
- {
- $this->category = $category;
- $this->question = $question;
- }
- public function getCategory()
- {
- return $this->category;
- }
- public function getQuestion()
- {
- return $this->question;
- }
- /**
- * Set id
- *
- * @param integer $id
- * @return CQuizQuestionCategory
- */
- public function setIid($id)
- {
- $this->iid = $id;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function getIid()
- {
- return $this->iid;
- }
- /**
- * Set cId
- *
- * @param integer $cId
- * @return CQuizQuestionRelCategory
- */
- public function setCId($cId)
- {
- $this->cId = $cId;
- return $this;
- }
- /**
- * Get cId
- *
- * @return integer
- */
- public function getCId()
- {
- return $this->cId;
- }
- /**
- * Set questionId
- *
- * @param integer $questionId
- * @return CQuizQuestionRelCategory
- */
- public function setQuestionId($questionId)
- {
- $this->questionId = $questionId;
- return $this;
- }
- /**
- * Get questionId
- *
- * @return integer
- */
- public function getQuestionId()
- {
- return $this->questionId;
- }
- /**
- * Set categoryId
- *
- * @param integer $categoryId
- * @return CQuizQuestionRelCategory
- */
- public function setCategoryId($categoryId)
- {
- $this->categoryId = $categoryId;
- return $this;
- }
- /**
- * Get categoryId
- *
- * @return integer
- */
- public function getCategoryId()
- {
- return $this->categoryId;
- }
- }
|