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.
244 lines
3.9 KiB
244 lines
3.9 KiB
<?php
|
|
|
|
namespace Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
*
|
|
* @license see /license.txt
|
|
* @author autogenerated
|
|
*/
|
|
class ForumThreadQualifyLog extends \CourseEntity
|
|
{
|
|
/**
|
|
* @return \Entity\Repository\ForumThreadQualifyLogRepository
|
|
*/
|
|
public static function repository(){
|
|
return \Entity\Repository\ForumThreadQualifyLogRepository::instance();
|
|
}
|
|
|
|
/**
|
|
* @return \Entity\ForumThreadQualifyLog
|
|
*/
|
|
public static function create(){
|
|
return new self();
|
|
}
|
|
|
|
/**
|
|
* @var integer $c_id
|
|
*/
|
|
protected $c_id;
|
|
|
|
/**
|
|
* @var integer $id
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @var integer $user_id
|
|
*/
|
|
protected $user_id;
|
|
|
|
/**
|
|
* @var integer $thread_id
|
|
*/
|
|
protected $thread_id;
|
|
|
|
/**
|
|
* @var float $qualify
|
|
*/
|
|
protected $qualify;
|
|
|
|
/**
|
|
* @var integer $qualify_user_id
|
|
*/
|
|
protected $qualify_user_id;
|
|
|
|
/**
|
|
* @var datetime $qualify_time
|
|
*/
|
|
protected $qualify_time;
|
|
|
|
/**
|
|
* @var integer $session_id
|
|
*/
|
|
protected $session_id;
|
|
|
|
|
|
/**
|
|
* Set c_id
|
|
*
|
|
* @param integer $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_c_id($value)
|
|
{
|
|
$this->c_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get c_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_c_id()
|
|
{
|
|
return $this->c_id;
|
|
}
|
|
|
|
/**
|
|
* Set id
|
|
*
|
|
* @param integer $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_id($value)
|
|
{
|
|
$this->id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_id()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set user_id
|
|
*
|
|
* @param integer $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_user_id($value)
|
|
{
|
|
$this->user_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get user_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_user_id()
|
|
{
|
|
return $this->user_id;
|
|
}
|
|
|
|
/**
|
|
* Set thread_id
|
|
*
|
|
* @param integer $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_thread_id($value)
|
|
{
|
|
$this->thread_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get thread_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_thread_id()
|
|
{
|
|
return $this->thread_id;
|
|
}
|
|
|
|
/**
|
|
* Set qualify
|
|
*
|
|
* @param float $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_qualify($value)
|
|
{
|
|
$this->qualify = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get qualify
|
|
*
|
|
* @return float
|
|
*/
|
|
public function get_qualify()
|
|
{
|
|
return $this->qualify;
|
|
}
|
|
|
|
/**
|
|
* Set qualify_user_id
|
|
*
|
|
* @param integer $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_qualify_user_id($value)
|
|
{
|
|
$this->qualify_user_id = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get qualify_user_id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_qualify_user_id()
|
|
{
|
|
return $this->qualify_user_id;
|
|
}
|
|
|
|
/**
|
|
* Set qualify_time
|
|
*
|
|
* @param datetime $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
public function set_qualify_time($value)
|
|
{
|
|
$this->qualify_time = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get qualify_time
|
|
*
|
|
* @return datetime
|
|
*/
|
|
public function get_qualify_time()
|
|
{
|
|
return $this->qualify_time;
|
|
}
|
|
|
|
/**
|
|
* Set session_id
|
|
*
|
|
* @param integer $value
|
|
* @return ForumThreadQualifyLog
|
|
*/
|
|
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;
|
|
}
|
|
} |