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.
475 lines
7.5 KiB
475 lines
7.5 KiB
<?php
|
|
|
|
namespace Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
*
|
|
* @license see /license.txt
|
|
* @author autogenerated
|
|
*/
|
|
class CourseRequest extends \Entity
|
|
{
|
|
/**
|
|
* @return \Entity\Repository\CourseRequestRepository
|
|
*/
|
|
public static function repository(){
|
|
return \Entity\Repository\CourseRequestRepository::instance();
|
|
}
|
|
|
|
/**
|
|
* @return \Entity\CourseRequest
|
|
*/
|
|
public static function create(){
|
|
return new self();
|
|
}
|
|
|
|
/**
|
|
* @var integer $id
|
|
*/
|
|
protected $id;
|
|
|
|
/**
|
|
* @var string $code
|
|
*/
|
|
protected $code;
|
|
|
|
/**
|
|
* @var integer $user_id
|
|
*/
|
|
protected $user_id;
|
|
|
|
/**
|
|
* @var string $directory
|
|
*/
|
|
protected $directory;
|
|
|
|
/**
|
|
* @var string $db_name
|
|
*/
|
|
protected $db_name;
|
|
|
|
/**
|
|
* @var string $course_language
|
|
*/
|
|
protected $course_language;
|
|
|
|
/**
|
|
* @var string $title
|
|
*/
|
|
protected $title;
|
|
|
|
/**
|
|
* @var text $description
|
|
*/
|
|
protected $description;
|
|
|
|
/**
|
|
* @var string $category_code
|
|
*/
|
|
protected $category_code;
|
|
|
|
/**
|
|
* @var string $tutor_name
|
|
*/
|
|
protected $tutor_name;
|
|
|
|
/**
|
|
* @var string $visual_code
|
|
*/
|
|
protected $visual_code;
|
|
|
|
/**
|
|
* @var datetime $request_date
|
|
*/
|
|
protected $request_date;
|
|
|
|
/**
|
|
* @var text $objetives
|
|
*/
|
|
protected $objetives;
|
|
|
|
/**
|
|
* @var text $target_audience
|
|
*/
|
|
protected $target_audience;
|
|
|
|
/**
|
|
* @var integer $status
|
|
*/
|
|
protected $status;
|
|
|
|
/**
|
|
* @var integer $info
|
|
*/
|
|
protected $info;
|
|
|
|
/**
|
|
* @var integer $exemplary_content
|
|
*/
|
|
protected $exemplary_content;
|
|
|
|
|
|
/**
|
|
* Get id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_id()
|
|
{
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Set code
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_code($value)
|
|
{
|
|
$this->code = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get code
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_code()
|
|
{
|
|
return $this->code;
|
|
}
|
|
|
|
/**
|
|
* Set user_id
|
|
*
|
|
* @param integer $value
|
|
* @return CourseRequest
|
|
*/
|
|
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 directory
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_directory($value)
|
|
{
|
|
$this->directory = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get directory
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_directory()
|
|
{
|
|
return $this->directory;
|
|
}
|
|
|
|
/**
|
|
* Set db_name
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_db_name($value)
|
|
{
|
|
$this->db_name = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get db_name
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_db_name()
|
|
{
|
|
return $this->db_name;
|
|
}
|
|
|
|
/**
|
|
* Set course_language
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_course_language($value)
|
|
{
|
|
$this->course_language = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get course_language
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_course_language()
|
|
{
|
|
return $this->course_language;
|
|
}
|
|
|
|
/**
|
|
* Set title
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_title($value)
|
|
{
|
|
$this->title = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get title
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_title()
|
|
{
|
|
return $this->title;
|
|
}
|
|
|
|
/**
|
|
* Set description
|
|
*
|
|
* @param text $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_description($value)
|
|
{
|
|
$this->description = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get description
|
|
*
|
|
* @return text
|
|
*/
|
|
public function get_description()
|
|
{
|
|
return $this->description;
|
|
}
|
|
|
|
/**
|
|
* Set category_code
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_category_code($value)
|
|
{
|
|
$this->category_code = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get category_code
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_category_code()
|
|
{
|
|
return $this->category_code;
|
|
}
|
|
|
|
/**
|
|
* Set tutor_name
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_tutor_name($value)
|
|
{
|
|
$this->tutor_name = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get tutor_name
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_tutor_name()
|
|
{
|
|
return $this->tutor_name;
|
|
}
|
|
|
|
/**
|
|
* Set visual_code
|
|
*
|
|
* @param string $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_visual_code($value)
|
|
{
|
|
$this->visual_code = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get visual_code
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_visual_code()
|
|
{
|
|
return $this->visual_code;
|
|
}
|
|
|
|
/**
|
|
* Set request_date
|
|
*
|
|
* @param datetime $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_request_date($value)
|
|
{
|
|
$this->request_date = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get request_date
|
|
*
|
|
* @return datetime
|
|
*/
|
|
public function get_request_date()
|
|
{
|
|
return $this->request_date;
|
|
}
|
|
|
|
/**
|
|
* Set objetives
|
|
*
|
|
* @param text $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_objetives($value)
|
|
{
|
|
$this->objetives = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get objetives
|
|
*
|
|
* @return text
|
|
*/
|
|
public function get_objetives()
|
|
{
|
|
return $this->objetives;
|
|
}
|
|
|
|
/**
|
|
* Set target_audience
|
|
*
|
|
* @param text $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_target_audience($value)
|
|
{
|
|
$this->target_audience = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get target_audience
|
|
*
|
|
* @return text
|
|
*/
|
|
public function get_target_audience()
|
|
{
|
|
return $this->target_audience;
|
|
}
|
|
|
|
/**
|
|
* Set status
|
|
*
|
|
* @param integer $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_status($value)
|
|
{
|
|
$this->status = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get status
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_status()
|
|
{
|
|
return $this->status;
|
|
}
|
|
|
|
/**
|
|
* Set info
|
|
*
|
|
* @param integer $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_info($value)
|
|
{
|
|
$this->info = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get info
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_info()
|
|
{
|
|
return $this->info;
|
|
}
|
|
|
|
/**
|
|
* Set exemplary_content
|
|
*
|
|
* @param integer $value
|
|
* @return CourseRequest
|
|
*/
|
|
public function set_exemplary_content($value)
|
|
{
|
|
$this->exemplary_content = $value;
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get exemplary_content
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function get_exemplary_content()
|
|
{
|
|
return $this->exemplary_content;
|
|
}
|
|
} |