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