EntityCourseRequest.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntityCourseRequest
  5. *
  6. * @Table(name="course_request")
  7. * @Entity
  8. */
  9. class EntityCourseRequest
  10. {
  11. /**
  12. * @var integer
  13. *
  14. * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  15. * @Id
  16. * @GeneratedValue(strategy="IDENTITY")
  17. */
  18. private $id;
  19. /**
  20. * @var string
  21. *
  22. * @Column(name="code", type="string", length=40, precision=0, scale=0, nullable=false, unique=false)
  23. */
  24. private $code;
  25. /**
  26. * @var integer
  27. *
  28. * @Column(name="user_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  29. */
  30. private $userId;
  31. /**
  32. * @var string
  33. *
  34. * @Column(name="directory", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
  35. */
  36. private $directory;
  37. /**
  38. * @var string
  39. *
  40. * @Column(name="db_name", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
  41. */
  42. private $dbName;
  43. /**
  44. * @var string
  45. *
  46. * @Column(name="course_language", type="string", length=20, precision=0, scale=0, nullable=true, unique=false)
  47. */
  48. private $courseLanguage;
  49. /**
  50. * @var string
  51. *
  52. * @Column(name="title", type="string", length=250, precision=0, scale=0, nullable=true, unique=false)
  53. */
  54. private $title;
  55. /**
  56. * @var string
  57. *
  58. * @Column(name="description", type="text", precision=0, scale=0, nullable=true, unique=false)
  59. */
  60. private $description;
  61. /**
  62. * @var string
  63. *
  64. * @Column(name="category_code", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
  65. */
  66. private $categoryCode;
  67. /**
  68. * @var string
  69. *
  70. * @Column(name="tutor_name", type="string", length=200, precision=0, scale=0, nullable=true, unique=false)
  71. */
  72. private $tutorName;
  73. /**
  74. * @var string
  75. *
  76. * @Column(name="visual_code", type="string", length=40, precision=0, scale=0, nullable=true, unique=false)
  77. */
  78. private $visualCode;
  79. /**
  80. * @var \DateTime
  81. *
  82. * @Column(name="request_date", type="datetime", precision=0, scale=0, nullable=false, unique=false)
  83. */
  84. private $requestDate;
  85. /**
  86. * @var string
  87. *
  88. * @Column(name="objetives", type="text", precision=0, scale=0, nullable=true, unique=false)
  89. */
  90. private $objetives;
  91. /**
  92. * @var string
  93. *
  94. * @Column(name="target_audience", type="text", precision=0, scale=0, nullable=true, unique=false)
  95. */
  96. private $targetAudience;
  97. /**
  98. * @var integer
  99. *
  100. * @Column(name="status", type="integer", precision=0, scale=0, nullable=false, unique=false)
  101. */
  102. private $status;
  103. /**
  104. * @var integer
  105. *
  106. * @Column(name="info", type="integer", precision=0, scale=0, nullable=false, unique=false)
  107. */
  108. private $info;
  109. /**
  110. * @var integer
  111. *
  112. * @Column(name="exemplary_content", type="integer", precision=0, scale=0, nullable=false, unique=false)
  113. */
  114. private $exemplaryContent;
  115. /**
  116. * Get id
  117. *
  118. * @return integer
  119. */
  120. public function getId()
  121. {
  122. return $this->id;
  123. }
  124. /**
  125. * Set code
  126. *
  127. * @param string $code
  128. * @return EntityCourseRequest
  129. */
  130. public function setCode($code)
  131. {
  132. $this->code = $code;
  133. return $this;
  134. }
  135. /**
  136. * Get code
  137. *
  138. * @return string
  139. */
  140. public function getCode()
  141. {
  142. return $this->code;
  143. }
  144. /**
  145. * Set userId
  146. *
  147. * @param integer $userId
  148. * @return EntityCourseRequest
  149. */
  150. public function setUserId($userId)
  151. {
  152. $this->userId = $userId;
  153. return $this;
  154. }
  155. /**
  156. * Get userId
  157. *
  158. * @return integer
  159. */
  160. public function getUserId()
  161. {
  162. return $this->userId;
  163. }
  164. /**
  165. * Set directory
  166. *
  167. * @param string $directory
  168. * @return EntityCourseRequest
  169. */
  170. public function setDirectory($directory)
  171. {
  172. $this->directory = $directory;
  173. return $this;
  174. }
  175. /**
  176. * Get directory
  177. *
  178. * @return string
  179. */
  180. public function getDirectory()
  181. {
  182. return $this->directory;
  183. }
  184. /**
  185. * Set dbName
  186. *
  187. * @param string $dbName
  188. * @return EntityCourseRequest
  189. */
  190. public function setDbName($dbName)
  191. {
  192. $this->dbName = $dbName;
  193. return $this;
  194. }
  195. /**
  196. * Get dbName
  197. *
  198. * @return string
  199. */
  200. public function getDbName()
  201. {
  202. return $this->dbName;
  203. }
  204. /**
  205. * Set courseLanguage
  206. *
  207. * @param string $courseLanguage
  208. * @return EntityCourseRequest
  209. */
  210. public function setCourseLanguage($courseLanguage)
  211. {
  212. $this->courseLanguage = $courseLanguage;
  213. return $this;
  214. }
  215. /**
  216. * Get courseLanguage
  217. *
  218. * @return string
  219. */
  220. public function getCourseLanguage()
  221. {
  222. return $this->courseLanguage;
  223. }
  224. /**
  225. * Set title
  226. *
  227. * @param string $title
  228. * @return EntityCourseRequest
  229. */
  230. public function setTitle($title)
  231. {
  232. $this->title = $title;
  233. return $this;
  234. }
  235. /**
  236. * Get title
  237. *
  238. * @return string
  239. */
  240. public function getTitle()
  241. {
  242. return $this->title;
  243. }
  244. /**
  245. * Set description
  246. *
  247. * @param string $description
  248. * @return EntityCourseRequest
  249. */
  250. public function setDescription($description)
  251. {
  252. $this->description = $description;
  253. return $this;
  254. }
  255. /**
  256. * Get description
  257. *
  258. * @return string
  259. */
  260. public function getDescription()
  261. {
  262. return $this->description;
  263. }
  264. /**
  265. * Set categoryCode
  266. *
  267. * @param string $categoryCode
  268. * @return EntityCourseRequest
  269. */
  270. public function setCategoryCode($categoryCode)
  271. {
  272. $this->categoryCode = $categoryCode;
  273. return $this;
  274. }
  275. /**
  276. * Get categoryCode
  277. *
  278. * @return string
  279. */
  280. public function getCategoryCode()
  281. {
  282. return $this->categoryCode;
  283. }
  284. /**
  285. * Set tutorName
  286. *
  287. * @param string $tutorName
  288. * @return EntityCourseRequest
  289. */
  290. public function setTutorName($tutorName)
  291. {
  292. $this->tutorName = $tutorName;
  293. return $this;
  294. }
  295. /**
  296. * Get tutorName
  297. *
  298. * @return string
  299. */
  300. public function getTutorName()
  301. {
  302. return $this->tutorName;
  303. }
  304. /**
  305. * Set visualCode
  306. *
  307. * @param string $visualCode
  308. * @return EntityCourseRequest
  309. */
  310. public function setVisualCode($visualCode)
  311. {
  312. $this->visualCode = $visualCode;
  313. return $this;
  314. }
  315. /**
  316. * Get visualCode
  317. *
  318. * @return string
  319. */
  320. public function getVisualCode()
  321. {
  322. return $this->visualCode;
  323. }
  324. /**
  325. * Set requestDate
  326. *
  327. * @param \DateTime $requestDate
  328. * @return EntityCourseRequest
  329. */
  330. public function setRequestDate($requestDate)
  331. {
  332. $this->requestDate = $requestDate;
  333. return $this;
  334. }
  335. /**
  336. * Get requestDate
  337. *
  338. * @return \DateTime
  339. */
  340. public function getRequestDate()
  341. {
  342. return $this->requestDate;
  343. }
  344. /**
  345. * Set objetives
  346. *
  347. * @param string $objetives
  348. * @return EntityCourseRequest
  349. */
  350. public function setObjetives($objetives)
  351. {
  352. $this->objetives = $objetives;
  353. return $this;
  354. }
  355. /**
  356. * Get objetives
  357. *
  358. * @return string
  359. */
  360. public function getObjetives()
  361. {
  362. return $this->objetives;
  363. }
  364. /**
  365. * Set targetAudience
  366. *
  367. * @param string $targetAudience
  368. * @return EntityCourseRequest
  369. */
  370. public function setTargetAudience($targetAudience)
  371. {
  372. $this->targetAudience = $targetAudience;
  373. return $this;
  374. }
  375. /**
  376. * Get targetAudience
  377. *
  378. * @return string
  379. */
  380. public function getTargetAudience()
  381. {
  382. return $this->targetAudience;
  383. }
  384. /**
  385. * Set status
  386. *
  387. * @param integer $status
  388. * @return EntityCourseRequest
  389. */
  390. public function setStatus($status)
  391. {
  392. $this->status = $status;
  393. return $this;
  394. }
  395. /**
  396. * Get status
  397. *
  398. * @return integer
  399. */
  400. public function getStatus()
  401. {
  402. return $this->status;
  403. }
  404. /**
  405. * Set info
  406. *
  407. * @param integer $info
  408. * @return EntityCourseRequest
  409. */
  410. public function setInfo($info)
  411. {
  412. $this->info = $info;
  413. return $this;
  414. }
  415. /**
  416. * Get info
  417. *
  418. * @return integer
  419. */
  420. public function getInfo()
  421. {
  422. return $this->info;
  423. }
  424. /**
  425. * Set exemplaryContent
  426. *
  427. * @param integer $exemplaryContent
  428. * @return EntityCourseRequest
  429. */
  430. public function setExemplaryContent($exemplaryContent)
  431. {
  432. $this->exemplaryContent = $exemplaryContent;
  433. return $this;
  434. }
  435. /**
  436. * Get exemplaryContent
  437. *
  438. * @return integer
  439. */
  440. public function getExemplaryContent()
  441. {
  442. return $this->exemplaryContent;
  443. }
  444. }