metadata.class.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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 Metadata extends \CourseEntity
  10. {
  11. /**
  12. * @return \Entity\Repository\MetadataRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\MetadataRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\Metadata
  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 string $eid
  29. */
  30. protected $eid;
  31. /**
  32. * @var text $mdxmltext
  33. */
  34. protected $mdxmltext;
  35. /**
  36. * @var string $md5
  37. */
  38. protected $md5;
  39. /**
  40. * @var text $htmlcache1
  41. */
  42. protected $htmlcache1;
  43. /**
  44. * @var text $htmlcache2
  45. */
  46. protected $htmlcache2;
  47. /**
  48. * @var text $indexabletext
  49. */
  50. protected $indexabletext;
  51. /**
  52. * Set c_id
  53. *
  54. * @param integer $value
  55. * @return Metadata
  56. */
  57. public function set_c_id($value)
  58. {
  59. $this->c_id = $value;
  60. return $this;
  61. }
  62. /**
  63. * Get c_id
  64. *
  65. * @return integer
  66. */
  67. public function get_c_id()
  68. {
  69. return $this->c_id;
  70. }
  71. /**
  72. * Set eid
  73. *
  74. * @param string $value
  75. * @return Metadata
  76. */
  77. public function set_eid($value)
  78. {
  79. $this->eid = $value;
  80. return $this;
  81. }
  82. /**
  83. * Get eid
  84. *
  85. * @return string
  86. */
  87. public function get_eid()
  88. {
  89. return $this->eid;
  90. }
  91. /**
  92. * Set mdxmltext
  93. *
  94. * @param text $value
  95. * @return Metadata
  96. */
  97. public function set_mdxmltext($value)
  98. {
  99. $this->mdxmltext = $value;
  100. return $this;
  101. }
  102. /**
  103. * Get mdxmltext
  104. *
  105. * @return text
  106. */
  107. public function get_mdxmltext()
  108. {
  109. return $this->mdxmltext;
  110. }
  111. /**
  112. * Set md5
  113. *
  114. * @param string $value
  115. * @return Metadata
  116. */
  117. public function set_md5($value)
  118. {
  119. $this->md5 = $value;
  120. return $this;
  121. }
  122. /**
  123. * Get md5
  124. *
  125. * @return string
  126. */
  127. public function get_md5()
  128. {
  129. return $this->md5;
  130. }
  131. /**
  132. * Set htmlcache1
  133. *
  134. * @param text $value
  135. * @return Metadata
  136. */
  137. public function set_htmlcache1($value)
  138. {
  139. $this->htmlcache1 = $value;
  140. return $this;
  141. }
  142. /**
  143. * Get htmlcache1
  144. *
  145. * @return text
  146. */
  147. public function get_htmlcache1()
  148. {
  149. return $this->htmlcache1;
  150. }
  151. /**
  152. * Set htmlcache2
  153. *
  154. * @param text $value
  155. * @return Metadata
  156. */
  157. public function set_htmlcache2($value)
  158. {
  159. $this->htmlcache2 = $value;
  160. return $this;
  161. }
  162. /**
  163. * Get htmlcache2
  164. *
  165. * @return text
  166. */
  167. public function get_htmlcache2()
  168. {
  169. return $this->htmlcache2;
  170. }
  171. /**
  172. * Set indexabletext
  173. *
  174. * @param text $value
  175. * @return Metadata
  176. */
  177. public function set_indexabletext($value)
  178. {
  179. $this->indexabletext = $value;
  180. return $this;
  181. }
  182. /**
  183. * Get indexabletext
  184. *
  185. * @return text
  186. */
  187. public function get_indexabletext()
  188. {
  189. return $this->indexabletext;
  190. }
  191. }