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.
82 lines
1.4 KiB
82 lines
1.4 KiB
13 years ago
|
<?php
|
||
|
|
||
|
namespace Entity;
|
||
|
|
||
|
use Doctrine\ORM\Mapping as ORM;
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @license see /license.txt
|
||
|
* @author autogenerated
|
||
|
*/
|
||
|
class AccessUrlRelCourse extends \Entity
|
||
|
{
|
||
|
/**
|
||
|
* @return \Entity\Repository\AccessUrlRelCourseRepository
|
||
|
*/
|
||
|
public static function repository(){
|
||
|
return \Entity\Repository\AccessUrlRelCourseRepository::instance();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @return \Entity\AccessUrlRelCourse
|
||
|
*/
|
||
|
public static function create(){
|
||
|
return new self();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @var integer $access_url_id
|
||
|
*/
|
||
|
protected $access_url_id;
|
||
|
|
||
|
/**
|
||
|
* @var string $course_code
|
||
|
*/
|
||
|
protected $course_code;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Set access_url_id
|
||
|
*
|
||
|
* @param integer $value
|
||
|
* @return AccessUrlRelCourse
|
||
|
*/
|
||
|
public function set_access_url_id($value)
|
||
|
{
|
||
|
$this->access_url_id = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get access_url_id
|
||
|
*
|
||
|
* @return integer
|
||
|
*/
|
||
|
public function get_access_url_id()
|
||
|
{
|
||
|
return $this->access_url_id;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set course_code
|
||
|
*
|
||
|
* @param string $value
|
||
|
* @return AccessUrlRelCourse
|
||
|
*/
|
||
|
public function set_course_code($value)
|
||
|
{
|
||
|
$this->course_code = $value;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get course_code
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function get_course_code()
|
||
|
{
|
||
|
return $this->course_code;
|
||
|
}
|
||
|
}
|