reservation_category_rights.class.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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 ReservationCategoryRights extends \Entity
  10. {
  11. /**
  12. * @return \Entity\Repository\ReservationCategoryRightsRepository
  13. */
  14. public static function repository(){
  15. return \Entity\Repository\ReservationCategoryRightsRepository::instance();
  16. }
  17. /**
  18. * @return \Entity\ReservationCategoryRights
  19. */
  20. public static function create(){
  21. return new self();
  22. }
  23. /**
  24. * @var integer $id
  25. */
  26. protected $id;
  27. /**
  28. * @var integer $category_id
  29. */
  30. protected $category_id;
  31. /**
  32. * @var integer $class_id
  33. */
  34. protected $class_id;
  35. /**
  36. * @var boolean $m_items
  37. */
  38. protected $m_items;
  39. /**
  40. * Get id
  41. *
  42. * @return integer
  43. */
  44. public function get_id()
  45. {
  46. return $this->id;
  47. }
  48. /**
  49. * Set category_id
  50. *
  51. * @param integer $value
  52. * @return ReservationCategoryRights
  53. */
  54. public function set_category_id($value)
  55. {
  56. $this->category_id = $value;
  57. return $this;
  58. }
  59. /**
  60. * Get category_id
  61. *
  62. * @return integer
  63. */
  64. public function get_category_id()
  65. {
  66. return $this->category_id;
  67. }
  68. /**
  69. * Set class_id
  70. *
  71. * @param integer $value
  72. * @return ReservationCategoryRights
  73. */
  74. public function set_class_id($value)
  75. {
  76. $this->class_id = $value;
  77. return $this;
  78. }
  79. /**
  80. * Get class_id
  81. *
  82. * @return integer
  83. */
  84. public function get_class_id()
  85. {
  86. return $this->class_id;
  87. }
  88. /**
  89. * Set m_items
  90. *
  91. * @param boolean $value
  92. * @return ReservationCategoryRights
  93. */
  94. public function set_m_items($value)
  95. {
  96. $this->m_items = $value;
  97. return $this;
  98. }
  99. /**
  100. * Get m_items
  101. *
  102. * @return boolean
  103. */
  104. public function get_m_items()
  105. {
  106. return $this->m_items;
  107. }
  108. }