|
|
|
@ -40,6 +40,14 @@ class CourseFieldValues |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private $tms; |
|
|
|
private $tms; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* @var integer |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @ORM\Column(name="c_id", type="integer", nullable=false) |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
private $cId; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* @var integer |
|
|
|
* @var integer |
|
|
|
* |
|
|
|
* |
|
|
|
@ -49,8 +57,6 @@ class CourseFieldValues |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
private $id; |
|
|
|
private $id; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Set courseCode |
|
|
|
* Set courseCode |
|
|
|
* |
|
|
|
* |
|
|
|
@ -152,4 +158,28 @@ class CourseFieldValues |
|
|
|
{ |
|
|
|
{ |
|
|
|
return $this->id; |
|
|
|
return $this->id; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Set cId |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param integer $cId |
|
|
|
|
|
|
|
* @return CAnnouncement |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function setCId($cId) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
$this->cId = $cId; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Get cId |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return integer |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getCId() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->cId; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|