user_rel_course_vote.class.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 UserRelCourseVote extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\UserRelCourseVoteRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\UserRelCourseVoteRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\UserRelCourseVote
  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 $user_id
  33. */
  34. protected $user_id;
  35. /**
  36. * @var integer $session_id
  37. */
  38. protected $session_id;
  39. /**
  40. * @var integer $url_id
  41. */
  42. protected $url_id;
  43. /**
  44. * @var integer $vote
  45. */
  46. protected $vote;
  47. /**
  48. * Get id
  49. *
  50. * @return integer
  51. */
  52. public function get_id()
  53. {
  54. return $this->id;
  55. }
  56. /**
  57. * Set c_id
  58. *
  59. * @param integer $value
  60. * @return UserRelCourseVote
  61. */
  62. public function set_c_id($value)
  63. {
  64. $this->c_id = $value;
  65. return $this;
  66. }
  67. /**
  68. * Get c_id
  69. *
  70. * @return integer
  71. */
  72. public function get_c_id()
  73. {
  74. return $this->c_id;
  75. }
  76. /**
  77. * Set user_id
  78. *
  79. * @param integer $value
  80. * @return UserRelCourseVote
  81. */
  82. public function set_user_id($value)
  83. {
  84. $this->user_id = $value;
  85. return $this;
  86. }
  87. /**
  88. * Get user_id
  89. *
  90. * @return integer
  91. */
  92. public function get_user_id()
  93. {
  94. return $this->user_id;
  95. }
  96. /**
  97. * Set session_id
  98. *
  99. * @param integer $value
  100. * @return UserRelCourseVote
  101. */
  102. public function set_session_id($value)
  103. {
  104. $this->session_id = $value;
  105. return $this;
  106. }
  107. /**
  108. * Get session_id
  109. *
  110. * @return integer
  111. */
  112. public function get_session_id()
  113. {
  114. return $this->session_id;
  115. }
  116. /**
  117. * Set url_id
  118. *
  119. * @param integer $value
  120. * @return UserRelCourseVote
  121. */
  122. public function set_url_id($value)
  123. {
  124. $this->url_id = $value;
  125. return $this;
  126. }
  127. /**
  128. * Get url_id
  129. *
  130. * @return integer
  131. */
  132. public function get_url_id()
  133. {
  134. return $this->url_id;
  135. }
  136. /**
  137. * Set vote
  138. *
  139. * @param integer $value
  140. * @return UserRelCourseVote
  141. */
  142. public function set_vote($value)
  143. {
  144. $this->vote = $value;
  145. return $this;
  146. }
  147. /**
  148. * Get vote
  149. *
  150. * @return integer
  151. */
  152. public function get_vote()
  153. {
  154. return $this->vote;
  155. }
  156. }