123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- class ReservationCategoryRights extends \Entity
- {
-
- public static function repository(){
- return \Entity\Repository\ReservationCategoryRightsRepository::instance();
- }
-
- public static function create(){
- return new self();
- }
-
- protected $id;
-
- protected $category_id;
-
- protected $class_id;
-
- protected $m_items;
-
- public function get_id()
- {
- return $this->id;
- }
-
- public function set_category_id($value)
- {
- $this->category_id = $value;
- return $this;
- }
-
- public function get_category_id()
- {
- return $this->category_id;
- }
-
- public function set_class_id($value)
- {
- $this->class_id = $value;
- return $this;
- }
-
- public function get_class_id()
- {
- return $this->class_id;
- }
-
- public function set_m_items($value)
- {
- $this->m_items = $value;
- return $this;
- }
-
- public function get_m_items()
- {
- return $this->m_items;
- }
- }
|