track_e_hotpotatoes.class.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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 TrackEHotpotatoes extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\TrackEHotpotatoesRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\TrackEHotpotatoesRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\TrackEHotpotatoes
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $exe_name
  29. */
  30. protected $exe_name;
  31. /**
  32. * @var integer $exe_user_id
  33. */
  34. protected $exe_user_id;
  35. /**
  36. * @var datetime $exe_date
  37. */
  38. protected $exe_date;
  39. /**
  40. * @var string $exe_cours_id
  41. */
  42. protected $exe_cours_id;
  43. /**
  44. * @var smallint $exe_result
  45. */
  46. protected $exe_result;
  47. /**
  48. * @var smallint $exe_weighting
  49. */
  50. protected $exe_weighting;
  51. /**
  52. * Get id
  53. *
  54. * @return integer
  55. */
  56. public function get_id()
  57. {
  58. return $this->id;
  59. }
  60. /**
  61. * Set exe_name
  62. *
  63. * @param string $value
  64. * @return TrackEHotpotatoes
  65. */
  66. public function set_exe_name($value)
  67. {
  68. $this->exe_name = $value;
  69. return $this;
  70. }
  71. /**
  72. * Get exe_name
  73. *
  74. * @return string
  75. */
  76. public function get_exe_name()
  77. {
  78. return $this->exe_name;
  79. }
  80. /**
  81. * Set exe_user_id
  82. *
  83. * @param integer $value
  84. * @return TrackEHotpotatoes
  85. */
  86. public function set_exe_user_id($value)
  87. {
  88. $this->exe_user_id = $value;
  89. return $this;
  90. }
  91. /**
  92. * Get exe_user_id
  93. *
  94. * @return integer
  95. */
  96. public function get_exe_user_id()
  97. {
  98. return $this->exe_user_id;
  99. }
  100. /**
  101. * Set exe_date
  102. *
  103. * @param datetime $value
  104. * @return TrackEHotpotatoes
  105. */
  106. public function set_exe_date($value)
  107. {
  108. $this->exe_date = $value;
  109. return $this;
  110. }
  111. /**
  112. * Get exe_date
  113. *
  114. * @return datetime
  115. */
  116. public function get_exe_date()
  117. {
  118. return $this->exe_date;
  119. }
  120. /**
  121. * Set exe_cours_id
  122. *
  123. * @param string $value
  124. * @return TrackEHotpotatoes
  125. */
  126. public function set_exe_cours_id($value)
  127. {
  128. $this->exe_cours_id = $value;
  129. return $this;
  130. }
  131. /**
  132. * Get exe_cours_id
  133. *
  134. * @return string
  135. */
  136. public function get_exe_cours_id()
  137. {
  138. return $this->exe_cours_id;
  139. }
  140. /**
  141. * Set exe_result
  142. *
  143. * @param smallint $value
  144. * @return TrackEHotpotatoes
  145. */
  146. public function set_exe_result($value)
  147. {
  148. $this->exe_result = $value;
  149. return $this;
  150. }
  151. /**
  152. * Get exe_result
  153. *
  154. * @return smallint
  155. */
  156. public function get_exe_result()
  157. {
  158. return $this->exe_result;
  159. }
  160. /**
  161. * Set exe_weighting
  162. *
  163. * @param smallint $value
  164. * @return TrackEHotpotatoes
  165. */
  166. public function set_exe_weighting($value)
  167. {
  168. $this->exe_weighting = $value;
  169. return $this;
  170. }
  171. /**
  172. * Get exe_weighting
  173. *
  174. * @return smallint
  175. */
  176. public function get_exe_weighting()
  177. {
  178. return $this->exe_weighting;
  179. }
  180. }