course_request.class.php 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  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 CourseRequest extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\CourseRequestRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\CourseRequestRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\CourseRequest
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $code
  29. */
  30. protected $code;
  31. /**
  32. * @var integer $user_id
  33. */
  34. protected $user_id;
  35. /**
  36. * @var string $directory
  37. */
  38. protected $directory;
  39. /**
  40. * @var string $db_name
  41. */
  42. protected $db_name;
  43. /**
  44. * @var string $course_language
  45. */
  46. protected $course_language;
  47. /**
  48. * @var string $title
  49. */
  50. protected $title;
  51. /**
  52. * @var text $description
  53. */
  54. protected $description;
  55. /**
  56. * @var string $category_code
  57. */
  58. protected $category_code;
  59. /**
  60. * @var string $tutor_name
  61. */
  62. protected $tutor_name;
  63. /**
  64. * @var string $visual_code
  65. */
  66. protected $visual_code;
  67. /**
  68. * @var datetime $request_date
  69. */
  70. protected $request_date;
  71. /**
  72. * @var text $objetives
  73. */
  74. protected $objetives;
  75. /**
  76. * @var text $target_audience
  77. */
  78. protected $target_audience;
  79. /**
  80. * @var integer $status
  81. */
  82. protected $status;
  83. /**
  84. * @var integer $info
  85. */
  86. protected $info;
  87. /**
  88. * @var integer $exemplary_content
  89. */
  90. protected $exemplary_content;
  91. /**
  92. * Get id
  93. *
  94. * @return integer
  95. */
  96. public function get_id()
  97. {
  98. return $this->id;
  99. }
  100. /**
  101. * Set code
  102. *
  103. * @param string $value
  104. * @return CourseRequest
  105. */
  106. public function set_code($value)
  107. {
  108. $this->code = $value;
  109. return $this;
  110. }
  111. /**
  112. * Get code
  113. *
  114. * @return string
  115. */
  116. public function get_code()
  117. {
  118. return $this->code;
  119. }
  120. /**
  121. * Set user_id
  122. *
  123. * @param integer $value
  124. * @return CourseRequest
  125. */
  126. public function set_user_id($value)
  127. {
  128. $this->user_id = $value;
  129. return $this;
  130. }
  131. /**
  132. * Get user_id
  133. *
  134. * @return integer
  135. */
  136. public function get_user_id()
  137. {
  138. return $this->user_id;
  139. }
  140. /**
  141. * Set directory
  142. *
  143. * @param string $value
  144. * @return CourseRequest
  145. */
  146. public function set_directory($value)
  147. {
  148. $this->directory = $value;
  149. return $this;
  150. }
  151. /**
  152. * Get directory
  153. *
  154. * @return string
  155. */
  156. public function get_directory()
  157. {
  158. return $this->directory;
  159. }
  160. /**
  161. * Set db_name
  162. *
  163. * @param string $value
  164. * @return CourseRequest
  165. */
  166. public function set_db_name($value)
  167. {
  168. $this->db_name = $value;
  169. return $this;
  170. }
  171. /**
  172. * Get db_name
  173. *
  174. * @return string
  175. */
  176. public function get_db_name()
  177. {
  178. return $this->db_name;
  179. }
  180. /**
  181. * Set course_language
  182. *
  183. * @param string $value
  184. * @return CourseRequest
  185. */
  186. public function set_course_language($value)
  187. {
  188. $this->course_language = $value;
  189. return $this;
  190. }
  191. /**
  192. * Get course_language
  193. *
  194. * @return string
  195. */
  196. public function get_course_language()
  197. {
  198. return $this->course_language;
  199. }
  200. /**
  201. * Set title
  202. *
  203. * @param string $value
  204. * @return CourseRequest
  205. */
  206. public function set_title($value)
  207. {
  208. $this->title = $value;
  209. return $this;
  210. }
  211. /**
  212. * Get title
  213. *
  214. * @return string
  215. */
  216. public function get_title()
  217. {
  218. return $this->title;
  219. }
  220. /**
  221. * Set description
  222. *
  223. * @param text $value
  224. * @return CourseRequest
  225. */
  226. public function set_description($value)
  227. {
  228. $this->description = $value;
  229. return $this;
  230. }
  231. /**
  232. * Get description
  233. *
  234. * @return text
  235. */
  236. public function get_description()
  237. {
  238. return $this->description;
  239. }
  240. /**
  241. * Set category_code
  242. *
  243. * @param string $value
  244. * @return CourseRequest
  245. */
  246. public function set_category_code($value)
  247. {
  248. $this->category_code = $value;
  249. return $this;
  250. }
  251. /**
  252. * Get category_code
  253. *
  254. * @return string
  255. */
  256. public function get_category_code()
  257. {
  258. return $this->category_code;
  259. }
  260. /**
  261. * Set tutor_name
  262. *
  263. * @param string $value
  264. * @return CourseRequest
  265. */
  266. public function set_tutor_name($value)
  267. {
  268. $this->tutor_name = $value;
  269. return $this;
  270. }
  271. /**
  272. * Get tutor_name
  273. *
  274. * @return string
  275. */
  276. public function get_tutor_name()
  277. {
  278. return $this->tutor_name;
  279. }
  280. /**
  281. * Set visual_code
  282. *
  283. * @param string $value
  284. * @return CourseRequest
  285. */
  286. public function set_visual_code($value)
  287. {
  288. $this->visual_code = $value;
  289. return $this;
  290. }
  291. /**
  292. * Get visual_code
  293. *
  294. * @return string
  295. */
  296. public function get_visual_code()
  297. {
  298. return $this->visual_code;
  299. }
  300. /**
  301. * Set request_date
  302. *
  303. * @param datetime $value
  304. * @return CourseRequest
  305. */
  306. public function set_request_date($value)
  307. {
  308. $this->request_date = $value;
  309. return $this;
  310. }
  311. /**
  312. * Get request_date
  313. *
  314. * @return datetime
  315. */
  316. public function get_request_date()
  317. {
  318. return $this->request_date;
  319. }
  320. /**
  321. * Set objetives
  322. *
  323. * @param text $value
  324. * @return CourseRequest
  325. */
  326. public function set_objetives($value)
  327. {
  328. $this->objetives = $value;
  329. return $this;
  330. }
  331. /**
  332. * Get objetives
  333. *
  334. * @return text
  335. */
  336. public function get_objetives()
  337. {
  338. return $this->objetives;
  339. }
  340. /**
  341. * Set target_audience
  342. *
  343. * @param text $value
  344. * @return CourseRequest
  345. */
  346. public function set_target_audience($value)
  347. {
  348. $this->target_audience = $value;
  349. return $this;
  350. }
  351. /**
  352. * Get target_audience
  353. *
  354. * @return text
  355. */
  356. public function get_target_audience()
  357. {
  358. return $this->target_audience;
  359. }
  360. /**
  361. * Set status
  362. *
  363. * @param integer $value
  364. * @return CourseRequest
  365. */
  366. public function set_status($value)
  367. {
  368. $this->status = $value;
  369. return $this;
  370. }
  371. /**
  372. * Get status
  373. *
  374. * @return integer
  375. */
  376. public function get_status()
  377. {
  378. return $this->status;
  379. }
  380. /**
  381. * Set info
  382. *
  383. * @param integer $value
  384. * @return CourseRequest
  385. */
  386. public function set_info($value)
  387. {
  388. $this->info = $value;
  389. return $this;
  390. }
  391. /**
  392. * Get info
  393. *
  394. * @return integer
  395. */
  396. public function get_info()
  397. {
  398. return $this->info;
  399. }
  400. /**
  401. * Set exemplary_content
  402. *
  403. * @param integer $value
  404. * @return CourseRequest
  405. */
  406. public function set_exemplary_content($value)
  407. {
  408. $this->exemplary_content = $value;
  409. return $this;
  410. }
  411. /**
  412. * Get exemplary_content
  413. *
  414. * @return integer
  415. */
  416. public function get_exemplary_content()
  417. {
  418. return $this->exemplary_content;
  419. }
  420. }