You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.6 KiB
97 lines
1.6 KiB
<?php
|
|
|
|
namespace Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
*
|
|
* @license see /license.txt
|
|
* @author autogenerated
|
|
*/
|
|
class UsergroupRelSession extends \Entity
|
|
{
|
|
/**
|
|
* @return \Entity\Repository\UsergroupRelSessionRepository
|
|
*/
|
|
public static function repository(){
|
|
return \Entity\Repository\UsergroupRelSessionRepository::instance();
|
|
}
|
|
|
|
/**
|
|
* @return \Entity\UsergroupRelSession
|
|
*/
|
|
public static function create(){
|
|
return new self();
|
|
}
|
|
|
|
/**
|
|
* @var integer $id
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @var integer $usergroup_id
|
|
*/
|
|
protected $usergroup_id;
|
|
|
|
/**
|
|
* @var integer $session_id
|
|
*/
|
|
protected $session_id;
|
|
|
|
|
|
/**
|
|
* Get id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_id()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set usergroup_id
|
|
*
|
|
* @param integer $value
|
|
* @return UsergroupRelSession
|
|
*/
|
|
public function set_usergroup_id($value)
|
|
{
|
|
$this->usergroup_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get usergroup_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_usergroup_id()
|
|
{
|
|
return $this->usergroup_id;
|
|
}
|
|
|
|
/**
|
|
* Set session_id
|
|
*
|
|
* @param integer $value
|
|
* @return UsergroupRelSession
|
|
*/
|
|
public function set_session_id($value)
|
|
{
|
|
$this->session_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get session_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_session_id()
|
|
{
|
|
return $this->session_id;
|
|
}
|
|
} |