lp_iv_objective.class.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  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 LpIvObjective extends \CourseEntity
  10. {
  11. /**
  12. * @return \Entity\Repository\LpIvObjectiveRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\LpIvObjectiveRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\LpIvObjective
  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 bigint $lp_iv_id
  33. */
  34. protected $lp_iv_id;
  35. /**
  36. * @var integer $order_id
  37. */
  38. protected $order_id;
  39. /**
  40. * @var string $objective_id
  41. */
  42. protected $objective_id;
  43. /**
  44. * @var float $score_raw
  45. */
  46. protected $score_raw;
  47. /**
  48. * @var float $score_max
  49. */
  50. protected $score_max;
  51. /**
  52. * @var float $score_min
  53. */
  54. protected $score_min;
  55. /**
  56. * @var string $status
  57. */
  58. protected $status;
  59. /**
  60. * Set c_id
  61. *
  62. * @param integer $value
  63. * @return LpIvObjective
  64. */
  65. public function set_c_id($value)
  66. {
  67. $this->c_id = $value;
  68. return $this;
  69. }
  70. /**
  71. * Get c_id
  72. *
  73. * @return integer
  74. */
  75. public function get_c_id()
  76. {
  77. return $this->c_id;
  78. }
  79. /**
  80. * Set id
  81. *
  82. * @param bigint $value
  83. * @return LpIvObjective
  84. */
  85. public function set_id($value)
  86. {
  87. $this->id = $value;
  88. return $this;
  89. }
  90. /**
  91. * Get id
  92. *
  93. * @return bigint
  94. */
  95. public function get_id()
  96. {
  97. return $this->id;
  98. }
  99. /**
  100. * Set lp_iv_id
  101. *
  102. * @param bigint $value
  103. * @return LpIvObjective
  104. */
  105. public function set_lp_iv_id($value)
  106. {
  107. $this->lp_iv_id = $value;
  108. return $this;
  109. }
  110. /**
  111. * Get lp_iv_id
  112. *
  113. * @return bigint
  114. */
  115. public function get_lp_iv_id()
  116. {
  117. return $this->lp_iv_id;
  118. }
  119. /**
  120. * Set order_id
  121. *
  122. * @param integer $value
  123. * @return LpIvObjective
  124. */
  125. public function set_order_id($value)
  126. {
  127. $this->order_id = $value;
  128. return $this;
  129. }
  130. /**
  131. * Get order_id
  132. *
  133. * @return integer
  134. */
  135. public function get_order_id()
  136. {
  137. return $this->order_id;
  138. }
  139. /**
  140. * Set objective_id
  141. *
  142. * @param string $value
  143. * @return LpIvObjective
  144. */
  145. public function set_objective_id($value)
  146. {
  147. $this->objective_id = $value;
  148. return $this;
  149. }
  150. /**
  151. * Get objective_id
  152. *
  153. * @return string
  154. */
  155. public function get_objective_id()
  156. {
  157. return $this->objective_id;
  158. }
  159. /**
  160. * Set score_raw
  161. *
  162. * @param float $value
  163. * @return LpIvObjective
  164. */
  165. public function set_score_raw($value)
  166. {
  167. $this->score_raw = $value;
  168. return $this;
  169. }
  170. /**
  171. * Get score_raw
  172. *
  173. * @return float
  174. */
  175. public function get_score_raw()
  176. {
  177. return $this->score_raw;
  178. }
  179. /**
  180. * Set score_max
  181. *
  182. * @param float $value
  183. * @return LpIvObjective
  184. */
  185. public function set_score_max($value)
  186. {
  187. $this->score_max = $value;
  188. return $this;
  189. }
  190. /**
  191. * Get score_max
  192. *
  193. * @return float
  194. */
  195. public function get_score_max()
  196. {
  197. return $this->score_max;
  198. }
  199. /**
  200. * Set score_min
  201. *
  202. * @param float $value
  203. * @return LpIvObjective
  204. */
  205. public function set_score_min($value)
  206. {
  207. $this->score_min = $value;
  208. return $this;
  209. }
  210. /**
  211. * Get score_min
  212. *
  213. * @return float
  214. */
  215. public function get_score_min()
  216. {
  217. return $this->score_min;
  218. }
  219. /**
  220. * Set status
  221. *
  222. * @param string $value
  223. * @return LpIvObjective
  224. */
  225. public function set_status($value)
  226. {
  227. $this->status = $value;
  228. return $this;
  229. }
  230. /**
  231. * Get status
  232. *
  233. * @return string
  234. */
  235. public function get_status()
  236. {
  237. return $this->status;
  238. }
  239. }