123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- <?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;
- }
- }
|