123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class SessionRelUser extends \Entity
- {
- /**
- * @return \Entity\Repository\SessionRelUserRepository
- */
- public static function repository(){
- return \Entity\Repository\SessionRelUserRepository::instance();
- }
- /**
- * @return \Entity\SessionRelUser
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id_session
- */
- protected $id_session;
- /**
- * @var integer $id_user
- */
- protected $id_user;
- /**
- * @var integer $relation_type
- */
- protected $relation_type;
- /**
- * Set id_session
- *
- * @param integer $value
- * @return SessionRelUser
- */
- public function set_id_session($value)
- {
- $this->id_session = $value;
- return $this;
- }
- /**
- * Get id_session
- *
- * @return integer
- */
- public function get_id_session()
- {
- return $this->id_session;
- }
- /**
- * Set id_user
- *
- * @param integer $value
- * @return SessionRelUser
- */
- public function set_id_user($value)
- {
- $this->id_user = $value;
- return $this;
- }
- /**
- * Get id_user
- *
- * @return integer
- */
- public function get_id_user()
- {
- return $this->id_user;
- }
- /**
- * Set relation_type
- *
- * @param integer $value
- * @return SessionRelUser
- */
- public function set_relation_type($value)
- {
- $this->relation_type = $value;
- return $this;
- }
- /**
- * Get relation_type
- *
- * @return integer
- */
- public function get_relation_type()
- {
- return $this->relation_type;
- }
- }
|