lp_iv_interaction.class.php 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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 LpIvInteraction extends \CourseEntity
  10. {
  11. /**
  12. * @return \Entity\Repository\LpIvInteractionRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\LpIvInteractionRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\LpIvInteraction
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $c_id
  25. */
  26. protected $c_id;
  27. /**
  28. * @var bigint $id
  29. */
  30. protected $id;
  31. /**
  32. * @var integer $order_id
  33. */
  34. protected $order_id;
  35. /**
  36. * @var bigint $lp_iv_id
  37. */
  38. protected $lp_iv_id;
  39. /**
  40. * @var string $interaction_id
  41. */
  42. protected $interaction_id;
  43. /**
  44. * @var string $interaction_type
  45. */
  46. protected $interaction_type;
  47. /**
  48. * @var float $weighting
  49. */
  50. protected $weighting;
  51. /**
  52. * @var string $completion_time
  53. */
  54. protected $completion_time;
  55. /**
  56. * @var text $correct_responses
  57. */
  58. protected $correct_responses;
  59. /**
  60. * @var text $student_response
  61. */
  62. protected $student_response;
  63. /**
  64. * @var string $result
  65. */
  66. protected $result;
  67. /**
  68. * @var string $latency
  69. */
  70. protected $latency;
  71. /**
  72. * Set c_id
  73. *
  74. * @param integer $value
  75. * @return LpIvInteraction
  76. */
  77. public function set_c_id($value)
  78. {
  79. $this->c_id = $value;
  80. return $this;
  81. }
  82. /**
  83. * Get c_id
  84. *
  85. * @return integer
  86. */
  87. public function get_c_id()
  88. {
  89. return $this->c_id;
  90. }
  91. /**
  92. * Set id
  93. *
  94. * @param bigint $value
  95. * @return LpIvInteraction
  96. */
  97. public function set_id($value)
  98. {
  99. $this->id = $value;
  100. return $this;
  101. }
  102. /**
  103. * Get id
  104. *
  105. * @return bigint
  106. */
  107. public function get_id()
  108. {
  109. return $this->id;
  110. }
  111. /**
  112. * Set order_id
  113. *
  114. * @param integer $value
  115. * @return LpIvInteraction
  116. */
  117. public function set_order_id($value)
  118. {
  119. $this->order_id = $value;
  120. return $this;
  121. }
  122. /**
  123. * Get order_id
  124. *
  125. * @return integer
  126. */
  127. public function get_order_id()
  128. {
  129. return $this->order_id;
  130. }
  131. /**
  132. * Set lp_iv_id
  133. *
  134. * @param bigint $value
  135. * @return LpIvInteraction
  136. */
  137. public function set_lp_iv_id($value)
  138. {
  139. $this->lp_iv_id = $value;
  140. return $this;
  141. }
  142. /**
  143. * Get lp_iv_id
  144. *
  145. * @return bigint
  146. */
  147. public function get_lp_iv_id()
  148. {
  149. return $this->lp_iv_id;
  150. }
  151. /**
  152. * Set interaction_id
  153. *
  154. * @param string $value
  155. * @return LpIvInteraction
  156. */
  157. public function set_interaction_id($value)
  158. {
  159. $this->interaction_id = $value;
  160. return $this;
  161. }
  162. /**
  163. * Get interaction_id
  164. *
  165. * @return string
  166. */
  167. public function get_interaction_id()
  168. {
  169. return $this->interaction_id;
  170. }
  171. /**
  172. * Set interaction_type
  173. *
  174. * @param string $value
  175. * @return LpIvInteraction
  176. */
  177. public function set_interaction_type($value)
  178. {
  179. $this->interaction_type = $value;
  180. return $this;
  181. }
  182. /**
  183. * Get interaction_type
  184. *
  185. * @return string
  186. */
  187. public function get_interaction_type()
  188. {
  189. return $this->interaction_type;
  190. }
  191. /**
  192. * Set weighting
  193. *
  194. * @param float $value
  195. * @return LpIvInteraction
  196. */
  197. public function set_weighting($value)
  198. {
  199. $this->weighting = $value;
  200. return $this;
  201. }
  202. /**
  203. * Get weighting
  204. *
  205. * @return float
  206. */
  207. public function get_weighting()
  208. {
  209. return $this->weighting;
  210. }
  211. /**
  212. * Set completion_time
  213. *
  214. * @param string $value
  215. * @return LpIvInteraction
  216. */
  217. public function set_completion_time($value)
  218. {
  219. $this->completion_time = $value;
  220. return $this;
  221. }
  222. /**
  223. * Get completion_time
  224. *
  225. * @return string
  226. */
  227. public function get_completion_time()
  228. {
  229. return $this->completion_time;
  230. }
  231. /**
  232. * Set correct_responses
  233. *
  234. * @param text $value
  235. * @return LpIvInteraction
  236. */
  237. public function set_correct_responses($value)
  238. {
  239. $this->correct_responses = $value;
  240. return $this;
  241. }
  242. /**
  243. * Get correct_responses
  244. *
  245. * @return text
  246. */
  247. public function get_correct_responses()
  248. {
  249. return $this->correct_responses;
  250. }
  251. /**
  252. * Set student_response
  253. *
  254. * @param text $value
  255. * @return LpIvInteraction
  256. */
  257. public function set_student_response($value)
  258. {
  259. $this->student_response = $value;
  260. return $this;
  261. }
  262. /**
  263. * Get student_response
  264. *
  265. * @return text
  266. */
  267. public function get_student_response()
  268. {
  269. return $this->student_response;
  270. }
  271. /**
  272. * Set result
  273. *
  274. * @param string $value
  275. * @return LpIvInteraction
  276. */
  277. public function set_result($value)
  278. {
  279. $this->result = $value;
  280. return $this;
  281. }
  282. /**
  283. * Get result
  284. *
  285. * @return string
  286. */
  287. public function get_result()
  288. {
  289. return $this->result;
  290. }
  291. /**
  292. * Set latency
  293. *
  294. * @param string $value
  295. * @return LpIvInteraction
  296. */
  297. public function set_latency($value)
  298. {
  299. $this->latency = $value;
  300. return $this;
  301. }
  302. /**
  303. * Get latency
  304. *
  305. * @return string
  306. */
  307. public function get_latency()
  308. {
  309. return $this->latency;
  310. }
  311. }