track_e_item_property.class.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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 TrackEItemProperty extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\TrackEItemPropertyRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\TrackEItemPropertyRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\TrackEItemProperty
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var integer $course_id
  29. */
  30. protected $course_id;
  31. /**
  32. * @var integer $item_property_id
  33. */
  34. protected $item_property_id;
  35. /**
  36. * @var string $title
  37. */
  38. protected $title;
  39. /**
  40. * @var text $content
  41. */
  42. protected $content;
  43. /**
  44. * @var integer $progress
  45. */
  46. protected $progress;
  47. /**
  48. * @var datetime $lastedit_date
  49. */
  50. protected $lastedit_date;
  51. /**
  52. * @var integer $lastedit_user_id
  53. */
  54. protected $lastedit_user_id;
  55. /**
  56. * @var integer $session_id
  57. */
  58. protected $session_id;
  59. /**
  60. * Get id
  61. *
  62. * @return integer
  63. */
  64. public function get_id()
  65. {
  66. return $this->id;
  67. }
  68. /**
  69. * Set course_id
  70. *
  71. * @param integer $value
  72. * @return TrackEItemProperty
  73. */
  74. public function set_course_id($value)
  75. {
  76. $this->course_id = $value;
  77. return $this;
  78. }
  79. /**
  80. * Get course_id
  81. *
  82. * @return integer
  83. */
  84. public function get_course_id()
  85. {
  86. return $this->course_id;
  87. }
  88. /**
  89. * Set item_property_id
  90. *
  91. * @param integer $value
  92. * @return TrackEItemProperty
  93. */
  94. public function set_item_property_id($value)
  95. {
  96. $this->item_property_id = $value;
  97. return $this;
  98. }
  99. /**
  100. * Get item_property_id
  101. *
  102. * @return integer
  103. */
  104. public function get_item_property_id()
  105. {
  106. return $this->item_property_id;
  107. }
  108. /**
  109. * Set title
  110. *
  111. * @param string $value
  112. * @return TrackEItemProperty
  113. */
  114. public function set_title($value)
  115. {
  116. $this->title = $value;
  117. return $this;
  118. }
  119. /**
  120. * Get title
  121. *
  122. * @return string
  123. */
  124. public function get_title()
  125. {
  126. return $this->title;
  127. }
  128. /**
  129. * Set content
  130. *
  131. * @param text $value
  132. * @return TrackEItemProperty
  133. */
  134. public function set_content($value)
  135. {
  136. $this->content = $value;
  137. return $this;
  138. }
  139. /**
  140. * Get content
  141. *
  142. * @return text
  143. */
  144. public function get_content()
  145. {
  146. return $this->content;
  147. }
  148. /**
  149. * Set progress
  150. *
  151. * @param integer $value
  152. * @return TrackEItemProperty
  153. */
  154. public function set_progress($value)
  155. {
  156. $this->progress = $value;
  157. return $this;
  158. }
  159. /**
  160. * Get progress
  161. *
  162. * @return integer
  163. */
  164. public function get_progress()
  165. {
  166. return $this->progress;
  167. }
  168. /**
  169. * Set lastedit_date
  170. *
  171. * @param datetime $value
  172. * @return TrackEItemProperty
  173. */
  174. public function set_lastedit_date($value)
  175. {
  176. $this->lastedit_date = $value;
  177. return $this;
  178. }
  179. /**
  180. * Get lastedit_date
  181. *
  182. * @return datetime
  183. */
  184. public function get_lastedit_date()
  185. {
  186. return $this->lastedit_date;
  187. }
  188. /**
  189. * Set lastedit_user_id
  190. *
  191. * @param integer $value
  192. * @return TrackEItemProperty
  193. */
  194. public function set_lastedit_user_id($value)
  195. {
  196. $this->lastedit_user_id = $value;
  197. return $this;
  198. }
  199. /**
  200. * Get lastedit_user_id
  201. *
  202. * @return integer
  203. */
  204. public function get_lastedit_user_id()
  205. {
  206. return $this->lastedit_user_id;
  207. }
  208. /**
  209. * Set session_id
  210. *
  211. * @param integer $value
  212. * @return TrackEItemProperty
  213. */
  214. public function set_session_id($value)
  215. {
  216. $this->session_id = $value;
  217. return $this;
  218. }
  219. /**
  220. * Get session_id
  221. *
  222. * @return integer
  223. */
  224. public function get_session_id()
  225. {
  226. return $this->session_id;
  227. }
  228. }