parent
735770380e
commit
982dc09518
@ -1,79 +0,0 @@ |
||||
<?php |
||||
|
||||
namespace ChamiloLMS\CoreBundle\Entity; |
||||
|
||||
use Doctrine\ORM\Mapping as ORM; |
||||
|
||||
/** |
||||
* CourseRelClass |
||||
* |
||||
* @ORM\Table(name="course_rel_class") |
||||
* @ORM\Entity |
||||
*/ |
||||
class CourseRelClass |
||||
{ |
||||
/** |
||||
* @var string |
||||
* |
||||
* @ORM\Column(name="course_code", type="string", length=40, precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="NONE") |
||||
*/ |
||||
private $courseCode; |
||||
|
||||
/** |
||||
* @var integer |
||||
* |
||||
* @ORM\Column(name="class_id", type="integer", precision=0, scale=0, nullable=false, unique=false) |
||||
* @ORM\Id |
||||
* @ORM\GeneratedValue(strategy="NONE") |
||||
*/ |
||||
private $classId; |
||||
|
||||
|
||||
/** |
||||
* Set courseCode |
||||
* |
||||
* @param string $courseCode |
||||
* @return CourseRelClass |
||||
*/ |
||||
public function setCourseCode($courseCode) |
||||
{ |
||||
$this->courseCode = $courseCode; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get courseCode |
||||
* |
||||
* @return string |
||||
*/ |
||||
public function getCourseCode() |
||||
{ |
||||
return $this->courseCode; |
||||
} |
||||
|
||||
/** |
||||
* Set classId |
||||
* |
||||
* @param integer $classId |
||||
* @return CourseRelClass |
||||
*/ |
||||
public function setClassId($classId) |
||||
{ |
||||
$this->classId = $classId; |
||||
|
||||
return $this; |
||||
} |
||||
|
||||
/** |
||||
* Get classId |
||||
* |
||||
* @return integer |
||||
*/ |
||||
public function getClassId() |
||||
{ |
||||
return $this->classId; |
||||
} |
||||
} |
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue