Chamilo is a learning management system focused on ease of use and accessibility
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.
chamilo-lms/main/inc/entity/session_field_values.class.php

151 lines
2.4 KiB

<?php
namespace Entity;
use Doctrine\ORM\Mapping as ORM;
/**
*
* @license see /license.txt
* @author autogenerated
*/
class SessionFieldValues extends \Entity
{
/**
* @return \Entity\Repository\SessionFieldValuesRepository
*/
public static function repository(){
return \Entity\Repository\SessionFieldValuesRepository::instance();
}
/**
* @return \Entity\SessionFieldValues
*/
public static function create(){
return new self();
}
/**
* @var integer $id
*/
protected $id;
/**
* @var integer $session_id
*/
protected $session_id;
/**
* @var integer $field_id
*/
protected $field_id;
/**
* @var text $field_value
*/
protected $field_value;
/**
* @var datetime $tms
*/
protected $tms;
/**
* Get id
*
* @return integer
*/
public function get_id()
{
return $this->id;
}
/**
* Set session_id
*
* @param integer $value
* @return SessionFieldValues
*/
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;
}
/**
* Set field_id
*
* @param integer $value
* @return SessionFieldValues
*/
public function set_field_id($value)
{
$this->field_id = $value;
return $this;
}
/**
* Get field_id
*
* @return integer
*/
public function get_field_id()
{
return $this->field_id;
}
/**
* Set field_value
*
* @param text $value
* @return SessionFieldValues
*/
public function set_field_value($value)
{
$this->field_value = $value;
return $this;
}
/**
* Get field_value
*
* @return text
*/
public function get_field_value()
{
return $this->field_value;
}
/**
* Set tms
*
* @param datetime $value
* @return SessionFieldValues
*/
public function set_tms($value)
{
$this->tms = $value;
return $this;
}
/**
* Get tms
*
* @return datetime
*/
public function get_tms()
{
return $this->tms;
}
}