session_category.class.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 SessionCategory extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\SessionCategoryRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\SessionCategoryRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\SessionCategory
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var string $name
  29. */
  30. protected $name;
  31. /**
  32. * @var date $date_start
  33. */
  34. protected $date_start;
  35. /**
  36. * @var date $date_end
  37. */
  38. protected $date_end;
  39. /**
  40. * @var integer $access_url_id
  41. */
  42. protected $access_url_id;
  43. /**
  44. * Get id
  45. *
  46. * @return integer
  47. */
  48. public function get_id()
  49. {
  50. return $this->id;
  51. }
  52. /**
  53. * Set name
  54. *
  55. * @param string $value
  56. * @return SessionCategory
  57. */
  58. public function set_name($value)
  59. {
  60. $this->name = $value;
  61. return $this;
  62. }
  63. /**
  64. * Get name
  65. *
  66. * @return string
  67. */
  68. public function get_name()
  69. {
  70. return $this->name;
  71. }
  72. /**
  73. * Set date_start
  74. *
  75. * @param date $value
  76. * @return SessionCategory
  77. */
  78. public function set_date_start($value)
  79. {
  80. $this->date_start = $value;
  81. return $this;
  82. }
  83. /**
  84. * Get date_start
  85. *
  86. * @return date
  87. */
  88. public function get_date_start()
  89. {
  90. return $this->date_start;
  91. }
  92. /**
  93. * Set date_end
  94. *
  95. * @param date $value
  96. * @return SessionCategory
  97. */
  98. public function set_date_end($value)
  99. {
  100. $this->date_end = $value;
  101. return $this;
  102. }
  103. /**
  104. * Get date_end
  105. *
  106. * @return date
  107. */
  108. public function get_date_end()
  109. {
  110. return $this->date_end;
  111. }
  112. /**
  113. * Set access_url_id
  114. *
  115. * @param integer $value
  116. * @return SessionCategory
  117. */
  118. public function set_access_url_id($value)
  119. {
  120. $this->access_url_id = $value;
  121. return $this;
  122. }
  123. /**
  124. * Get access_url_id
  125. *
  126. * @return integer
  127. */
  128. public function get_access_url_id()
  129. {
  130. return $this->access_url_id;
  131. }
  132. }