123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * CQuizDistributionRelSessionRelCategory
- *
- * @ORM\Table(name="c_quiz_distribution_rel_session_rel_category")
- * @ORM\Entity
- */
- class CQuizDistributionRelSessionRelCategory
- {
- /**
- * @var integer
- *
- * @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var integer
- *
- * @ORM\Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $sessionId;
- /**
- * @var integer
- *
- * @ORM\Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $cId;
- /**
- * @var integer
- *
- * @ORM\Column(name="exercise_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $exerciseId;
- /**
- * @var integer
- *
- * @ORM\Column(name="quiz_distribution_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $quizDistributionId;
- /**
- * @var integer
- *
- * @ORM\Column(name="category_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- */
- private $categoryId;
- /**
- * @var float
- *
- * @ORM\Column(name="modifier", type="float", precision=0, scale=0, nullable=false, unique=false)
- */
- private $modifier;
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set sessionId
- *
- * @param integer $sessionId
- * @return CQuizDistributionRelSessionRelCategory
- */
- public function setSessionId($sessionId)
- {
- $this->sessionId = $sessionId;
- return $this;
- }
- /**
- * Get sessionId
- *
- * @return integer
- */
- public function getSessionId()
- {
- return $this->sessionId;
- }
- /**
- * Set cId
- *
- * @param integer $cId
- * @return CQuizDistributionRelSessionRelCategory
- */
- public function setCId($cId)
- {
- $this->cId = $cId;
- return $this;
- }
- /**
- * Get cId
- *
- * @return integer
- */
- public function getCId()
- {
- return $this->cId;
- }
- /**
- * Set exerciseId
- *
- * @param integer $exerciseId
- * @return CQuizDistributionRelSessionRelCategory
- */
- public function setExerciseId($exerciseId)
- {
- $this->exerciseId = $exerciseId;
- return $this;
- }
- /**
- * Get exerciseId
- *
- * @return integer
- */
- public function getExerciseId()
- {
- return $this->exerciseId;
- }
- /**
- * Set quizDistributionId
- *
- * @param integer $quizDistributionId
- * @return CQuizDistributionRelSessionRelCategory
- */
- public function setQuizDistributionId($quizDistributionId)
- {
- $this->quizDistributionId = $quizDistributionId;
- return $this;
- }
- /**
- * Get quizDistributionId
- *
- * @return integer
- */
- public function getQuizDistributionId()
- {
- return $this->quizDistributionId;
- }
- /**
- * Set categoryId
- *
- * @param integer $categoryId
- * @return CQuizDistributionRelSessionRelCategory
- */
- public function setCategoryId($categoryId)
- {
- $this->categoryId = $categoryId;
- return $this;
- }
- /**
- * Get categoryId
- *
- * @return integer
- */
- public function getCategoryId()
- {
- return $this->categoryId;
- }
- /**
- * Set modifier
- *
- * @param float $modifier
- * @return CQuizDistributionRelSessionRelCategory
- */
- public function setModifier($modifier)
- {
- $this->modifier = $modifier;
- return $this;
- }
- /**
- * Get modifier
- *
- * @return float
- */
- public function getModifier()
- {
- return $this->modifier;
- }
- }
|