CQuizDistributionRelSessionRelCategory.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. namespace Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. * CQuizDistributionRelSessionRelCategory
  6. *
  7. * @ORM\Table(name="c_quiz_distribution_rel_session_rel_category")
  8. * @ORM\Entity
  9. */
  10. class CQuizDistributionRelSessionRelCategory
  11. {
  12. /**
  13. * @var integer
  14. *
  15. * @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  16. * @ORM\Id
  17. * @ORM\GeneratedValue(strategy="IDENTITY")
  18. */
  19. private $id;
  20. /**
  21. * @var integer
  22. *
  23. * @ORM\Column(name="session_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  24. */
  25. private $sessionId;
  26. /**
  27. * @var integer
  28. *
  29. * @ORM\Column(name="c_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  30. */
  31. private $cId;
  32. /**
  33. * @var integer
  34. *
  35. * @ORM\Column(name="exercise_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  36. */
  37. private $exerciseId;
  38. /**
  39. * @var integer
  40. *
  41. * @ORM\Column(name="quiz_distribution_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  42. */
  43. private $quizDistributionId;
  44. /**
  45. * @var integer
  46. *
  47. * @ORM\Column(name="category_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  48. */
  49. private $categoryId;
  50. /**
  51. * @var float
  52. *
  53. * @ORM\Column(name="modifier", type="float", precision=0, scale=0, nullable=false, unique=false)
  54. */
  55. private $modifier;
  56. /**
  57. * Get id
  58. *
  59. * @return integer
  60. */
  61. public function getId()
  62. {
  63. return $this->id;
  64. }
  65. /**
  66. * Set sessionId
  67. *
  68. * @param integer $sessionId
  69. * @return CQuizDistributionRelSessionRelCategory
  70. */
  71. public function setSessionId($sessionId)
  72. {
  73. $this->sessionId = $sessionId;
  74. return $this;
  75. }
  76. /**
  77. * Get sessionId
  78. *
  79. * @return integer
  80. */
  81. public function getSessionId()
  82. {
  83. return $this->sessionId;
  84. }
  85. /**
  86. * Set cId
  87. *
  88. * @param integer $cId
  89. * @return CQuizDistributionRelSessionRelCategory
  90. */
  91. public function setCId($cId)
  92. {
  93. $this->cId = $cId;
  94. return $this;
  95. }
  96. /**
  97. * Get cId
  98. *
  99. * @return integer
  100. */
  101. public function getCId()
  102. {
  103. return $this->cId;
  104. }
  105. /**
  106. * Set exerciseId
  107. *
  108. * @param integer $exerciseId
  109. * @return CQuizDistributionRelSessionRelCategory
  110. */
  111. public function setExerciseId($exerciseId)
  112. {
  113. $this->exerciseId = $exerciseId;
  114. return $this;
  115. }
  116. /**
  117. * Get exerciseId
  118. *
  119. * @return integer
  120. */
  121. public function getExerciseId()
  122. {
  123. return $this->exerciseId;
  124. }
  125. /**
  126. * Set quizDistributionId
  127. *
  128. * @param integer $quizDistributionId
  129. * @return CQuizDistributionRelSessionRelCategory
  130. */
  131. public function setQuizDistributionId($quizDistributionId)
  132. {
  133. $this->quizDistributionId = $quizDistributionId;
  134. return $this;
  135. }
  136. /**
  137. * Get quizDistributionId
  138. *
  139. * @return integer
  140. */
  141. public function getQuizDistributionId()
  142. {
  143. return $this->quizDistributionId;
  144. }
  145. /**
  146. * Set categoryId
  147. *
  148. * @param integer $categoryId
  149. * @return CQuizDistributionRelSessionRelCategory
  150. */
  151. public function setCategoryId($categoryId)
  152. {
  153. $this->categoryId = $categoryId;
  154. return $this;
  155. }
  156. /**
  157. * Get categoryId
  158. *
  159. * @return integer
  160. */
  161. public function getCategoryId()
  162. {
  163. return $this->categoryId;
  164. }
  165. /**
  166. * Set modifier
  167. *
  168. * @param float $modifier
  169. * @return CQuizDistributionRelSessionRelCategory
  170. */
  171. public function setModifier($modifier)
  172. {
  173. $this->modifier = $modifier;
  174. return $this;
  175. }
  176. /**
  177. * Get modifier
  178. *
  179. * @return float
  180. */
  181. public function getModifier()
  182. {
  183. return $this->modifier;
  184. }
  185. }