123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class SessionCategory extends \Entity
- {
- /**
- * @return \Entity\Repository\SessionCategoryRepository
- */
- public static function repository(){
- return \Entity\Repository\SessionCategoryRepository::instance();
- }
- /**
- * @return \Entity\SessionCategory
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var string $name
- */
- protected $name;
- /**
- * @var date $date_start
- */
- protected $date_start;
- /**
- * @var date $date_end
- */
- protected $date_end;
- /**
- * @var integer $access_url_id
- */
- protected $access_url_id;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set name
- *
- * @param string $value
- * @return SessionCategory
- */
- public function set_name($value)
- {
- $this->name = $value;
- return $this;
- }
- /**
- * Get name
- *
- * @return string
- */
- public function get_name()
- {
- return $this->name;
- }
- /**
- * Set date_start
- *
- * @param date $value
- * @return SessionCategory
- */
- public function set_date_start($value)
- {
- $this->date_start = $value;
- return $this;
- }
- /**
- * Get date_start
- *
- * @return date
- */
- public function get_date_start()
- {
- return $this->date_start;
- }
- /**
- * Set date_end
- *
- * @param date $value
- * @return SessionCategory
- */
- public function set_date_end($value)
- {
- $this->date_end = $value;
- return $this;
- }
- /**
- * Get date_end
- *
- * @return date
- */
- public function get_date_end()
- {
- return $this->date_end;
- }
- /**
- * Set access_url_id
- *
- * @param integer $value
- * @return SessionCategory
- */
- public function set_access_url_id($value)
- {
- $this->access_url_id = $value;
- return $this;
- }
- /**
- * Get access_url_id
- *
- * @return integer
- */
- public function get_access_url_id()
- {
- return $this->access_url_id;
- }
- }
|