track_course_ranking.class.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  1. <?php
  2. namespace Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5. *
  6. * @license see /license.txt
  7. * @author autogenerated
  8. */
  9. class TrackCourseRanking extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\TrackCourseRankingRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\TrackCourseRankingRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\TrackCourseRanking
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var integer $c_id
  29. */
  30. protected $c_id;
  31. /**
  32. * @var integer $session_id
  33. */
  34. protected $session_id;
  35. /**
  36. * @var integer $url_id
  37. */
  38. protected $url_id;
  39. /**
  40. * @var integer $accesses
  41. */
  42. protected $accesses;
  43. /**
  44. * @var integer $total_score
  45. */
  46. protected $total_score;
  47. /**
  48. * @var integer $users
  49. */
  50. protected $users;
  51. /**
  52. * @var datetime $creation_date
  53. */
  54. protected $creation_date;
  55. /**
  56. * Get id
  57. *
  58. * @return integer
  59. */
  60. public function get_id()
  61. {
  62. return $this->id;
  63. }
  64. /**
  65. * Set c_id
  66. *
  67. * @param integer $value
  68. * @return TrackCourseRanking
  69. */
  70. public function set_c_id($value)
  71. {
  72. $this->c_id = $value;
  73. return $this;
  74. }
  75. /**
  76. * Get c_id
  77. *
  78. * @return integer
  79. */
  80. public function get_c_id()
  81. {
  82. return $this->c_id;
  83. }
  84. /**
  85. * Set session_id
  86. *
  87. * @param integer $value
  88. * @return TrackCourseRanking
  89. */
  90. public function set_session_id($value)
  91. {
  92. $this->session_id = $value;
  93. return $this;
  94. }
  95. /**
  96. * Get session_id
  97. *
  98. * @return integer
  99. */
  100. public function get_session_id()
  101. {
  102. return $this->session_id;
  103. }
  104. /**
  105. * Set url_id
  106. *
  107. * @param integer $value
  108. * @return TrackCourseRanking
  109. */
  110. public function set_url_id($value)
  111. {
  112. $this->url_id = $value;
  113. return $this;
  114. }
  115. /**
  116. * Get url_id
  117. *
  118. * @return integer
  119. */
  120. public function get_url_id()
  121. {
  122. return $this->url_id;
  123. }
  124. /**
  125. * Set accesses
  126. *
  127. * @param integer $value
  128. * @return TrackCourseRanking
  129. */
  130. public function set_accesses($value)
  131. {
  132. $this->accesses = $value;
  133. return $this;
  134. }
  135. /**
  136. * Get accesses
  137. *
  138. * @return integer
  139. */
  140. public function get_accesses()
  141. {
  142. return $this->accesses;
  143. }
  144. /**
  145. * Set total_score
  146. *
  147. * @param integer $value
  148. * @return TrackCourseRanking
  149. */
  150. public function set_total_score($value)
  151. {
  152. $this->total_score = $value;
  153. return $this;
  154. }
  155. /**
  156. * Get total_score
  157. *
  158. * @return integer
  159. */
  160. public function get_total_score()
  161. {
  162. return $this->total_score;
  163. }
  164. /**
  165. * Set users
  166. *
  167. * @param integer $value
  168. * @return TrackCourseRanking
  169. */
  170. public function set_users($value)
  171. {
  172. $this->users = $value;
  173. return $this;
  174. }
  175. /**
  176. * Get users
  177. *
  178. * @return integer
  179. */
  180. public function get_users()
  181. {
  182. return $this->users;
  183. }
  184. /**
  185. * Set creation_date
  186. *
  187. * @param datetime $value
  188. * @return TrackCourseRanking
  189. */
  190. public function set_creation_date($value)
  191. {
  192. $this->creation_date = $value;
  193. return $this;
  194. }
  195. /**
  196. * Get creation_date
  197. *
  198. * @return datetime
  199. */
  200. public function get_creation_date()
  201. {
  202. return $this->creation_date;
  203. }
  204. }