track_e_exercices.class.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502
  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 TrackEExercices extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\TrackEExercicesRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\TrackEExercicesRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\TrackEExercices
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $exe_id
  25. */
  26. protected $exe_id;
  27. /**
  28. * @var integer $exe_user_id
  29. */
  30. protected $exe_user_id;
  31. /**
  32. * @var datetime $exe_date
  33. */
  34. protected $exe_date;
  35. /**
  36. * @var string $exe_cours_id
  37. */
  38. protected $exe_cours_id;
  39. /**
  40. * @var integer $exe_exo_id
  41. */
  42. protected $exe_exo_id;
  43. /**
  44. * @var float $exe_result
  45. */
  46. protected $exe_result;
  47. /**
  48. * @var float $exe_weighting
  49. */
  50. protected $exe_weighting;
  51. /**
  52. * @var string $status
  53. */
  54. protected $status;
  55. /**
  56. * @var text $data_tracking
  57. */
  58. protected $data_tracking;
  59. /**
  60. * @var datetime $start_date
  61. */
  62. protected $start_date;
  63. /**
  64. * @var smallint $steps_counter
  65. */
  66. protected $steps_counter;
  67. /**
  68. * @var smallint $session_id
  69. */
  70. protected $session_id;
  71. /**
  72. * @var integer $orig_lp_id
  73. */
  74. protected $orig_lp_id;
  75. /**
  76. * @var integer $orig_lp_item_id
  77. */
  78. protected $orig_lp_item_id;
  79. /**
  80. * @var integer $exe_duration
  81. */
  82. protected $exe_duration;
  83. /**
  84. * @var datetime $expired_time_control
  85. */
  86. protected $expired_time_control;
  87. /**
  88. * @var integer $orig_lp_item_view_id
  89. */
  90. protected $orig_lp_item_view_id;
  91. /**
  92. * @var text $questions_to_check
  93. */
  94. protected $questions_to_check;
  95. /**
  96. * Get exe_id
  97. *
  98. * @return integer
  99. */
  100. public function get_exe_id()
  101. {
  102. return $this->exe_id;
  103. }
  104. /**
  105. * Set exe_user_id
  106. *
  107. * @param integer $value
  108. * @return TrackEExercices
  109. */
  110. public function set_exe_user_id($value)
  111. {
  112. $this->exe_user_id = $value;
  113. return $this;
  114. }
  115. /**
  116. * Get exe_user_id
  117. *
  118. * @return integer
  119. */
  120. public function get_exe_user_id()
  121. {
  122. return $this->exe_user_id;
  123. }
  124. /**
  125. * Set exe_date
  126. *
  127. * @param datetime $value
  128. * @return TrackEExercices
  129. */
  130. public function set_exe_date($value)
  131. {
  132. $this->exe_date = $value;
  133. return $this;
  134. }
  135. /**
  136. * Get exe_date
  137. *
  138. * @return datetime
  139. */
  140. public function get_exe_date()
  141. {
  142. return $this->exe_date;
  143. }
  144. /**
  145. * Set exe_cours_id
  146. *
  147. * @param string $value
  148. * @return TrackEExercices
  149. */
  150. public function set_exe_cours_id($value)
  151. {
  152. $this->exe_cours_id = $value;
  153. return $this;
  154. }
  155. /**
  156. * Get exe_cours_id
  157. *
  158. * @return string
  159. */
  160. public function get_exe_cours_id()
  161. {
  162. return $this->exe_cours_id;
  163. }
  164. /**
  165. * Set exe_exo_id
  166. *
  167. * @param integer $value
  168. * @return TrackEExercices
  169. */
  170. public function set_exe_exo_id($value)
  171. {
  172. $this->exe_exo_id = $value;
  173. return $this;
  174. }
  175. /**
  176. * Get exe_exo_id
  177. *
  178. * @return integer
  179. */
  180. public function get_exe_exo_id()
  181. {
  182. return $this->exe_exo_id;
  183. }
  184. /**
  185. * Set exe_result
  186. *
  187. * @param float $value
  188. * @return TrackEExercices
  189. */
  190. public function set_exe_result($value)
  191. {
  192. $this->exe_result = $value;
  193. return $this;
  194. }
  195. /**
  196. * Get exe_result
  197. *
  198. * @return float
  199. */
  200. public function get_exe_result()
  201. {
  202. return $this->exe_result;
  203. }
  204. /**
  205. * Set exe_weighting
  206. *
  207. * @param float $value
  208. * @return TrackEExercices
  209. */
  210. public function set_exe_weighting($value)
  211. {
  212. $this->exe_weighting = $value;
  213. return $this;
  214. }
  215. /**
  216. * Get exe_weighting
  217. *
  218. * @return float
  219. */
  220. public function get_exe_weighting()
  221. {
  222. return $this->exe_weighting;
  223. }
  224. /**
  225. * Set status
  226. *
  227. * @param string $value
  228. * @return TrackEExercices
  229. */
  230. public function set_status($value)
  231. {
  232. $this->status = $value;
  233. return $this;
  234. }
  235. /**
  236. * Get status
  237. *
  238. * @return string
  239. */
  240. public function get_status()
  241. {
  242. return $this->status;
  243. }
  244. /**
  245. * Set data_tracking
  246. *
  247. * @param text $value
  248. * @return TrackEExercices
  249. */
  250. public function set_data_tracking($value)
  251. {
  252. $this->data_tracking = $value;
  253. return $this;
  254. }
  255. /**
  256. * Get data_tracking
  257. *
  258. * @return text
  259. */
  260. public function get_data_tracking()
  261. {
  262. return $this->data_tracking;
  263. }
  264. /**
  265. * Set start_date
  266. *
  267. * @param datetime $value
  268. * @return TrackEExercices
  269. */
  270. public function set_start_date($value)
  271. {
  272. $this->start_date = $value;
  273. return $this;
  274. }
  275. /**
  276. * Get start_date
  277. *
  278. * @return datetime
  279. */
  280. public function get_start_date()
  281. {
  282. return $this->start_date;
  283. }
  284. /**
  285. * Set steps_counter
  286. *
  287. * @param smallint $value
  288. * @return TrackEExercices
  289. */
  290. public function set_steps_counter($value)
  291. {
  292. $this->steps_counter = $value;
  293. return $this;
  294. }
  295. /**
  296. * Get steps_counter
  297. *
  298. * @return smallint
  299. */
  300. public function get_steps_counter()
  301. {
  302. return $this->steps_counter;
  303. }
  304. /**
  305. * Set session_id
  306. *
  307. * @param smallint $value
  308. * @return TrackEExercices
  309. */
  310. public function set_session_id($value)
  311. {
  312. $this->session_id = $value;
  313. return $this;
  314. }
  315. /**
  316. * Get session_id
  317. *
  318. * @return smallint
  319. */
  320. public function get_session_id()
  321. {
  322. return $this->session_id;
  323. }
  324. /**
  325. * Set orig_lp_id
  326. *
  327. * @param integer $value
  328. * @return TrackEExercices
  329. */
  330. public function set_orig_lp_id($value)
  331. {
  332. $this->orig_lp_id = $value;
  333. return $this;
  334. }
  335. /**
  336. * Get orig_lp_id
  337. *
  338. * @return integer
  339. */
  340. public function get_orig_lp_id()
  341. {
  342. return $this->orig_lp_id;
  343. }
  344. /**
  345. * Set orig_lp_item_id
  346. *
  347. * @param integer $value
  348. * @return TrackEExercices
  349. */
  350. public function set_orig_lp_item_id($value)
  351. {
  352. $this->orig_lp_item_id = $value;
  353. return $this;
  354. }
  355. /**
  356. * Get orig_lp_item_id
  357. *
  358. * @return integer
  359. */
  360. public function get_orig_lp_item_id()
  361. {
  362. return $this->orig_lp_item_id;
  363. }
  364. /**
  365. * Set exe_duration
  366. *
  367. * @param integer $value
  368. * @return TrackEExercices
  369. */
  370. public function set_exe_duration($value)
  371. {
  372. $this->exe_duration = $value;
  373. return $this;
  374. }
  375. /**
  376. * Get exe_duration
  377. *
  378. * @return integer
  379. */
  380. public function get_exe_duration()
  381. {
  382. return $this->exe_duration;
  383. }
  384. /**
  385. * Set expired_time_control
  386. *
  387. * @param datetime $value
  388. * @return TrackEExercices
  389. */
  390. public function set_expired_time_control($value)
  391. {
  392. $this->expired_time_control = $value;
  393. return $this;
  394. }
  395. /**
  396. * Get expired_time_control
  397. *
  398. * @return datetime
  399. */
  400. public function get_expired_time_control()
  401. {
  402. return $this->expired_time_control;
  403. }
  404. /**
  405. * Set orig_lp_item_view_id
  406. *
  407. * @param integer $value
  408. * @return TrackEExercices
  409. */
  410. public function set_orig_lp_item_view_id($value)
  411. {
  412. $this->orig_lp_item_view_id = $value;
  413. return $this;
  414. }
  415. /**
  416. * Get orig_lp_item_view_id
  417. *
  418. * @return integer
  419. */
  420. public function get_orig_lp_item_view_id()
  421. {
  422. return $this->orig_lp_item_view_id;
  423. }
  424. /**
  425. * Set questions_to_check
  426. *
  427. * @param text $value
  428. * @return TrackEExercices
  429. */
  430. public function set_questions_to_check($value)
  431. {
  432. $this->questions_to_check = $value;
  433. return $this;
  434. }
  435. /**
  436. * Get questions_to_check
  437. *
  438. * @return text
  439. */
  440. public function get_questions_to_check()
  441. {
  442. return $this->questions_to_check;
  443. }
  444. }