id; } /** * Set courseCode * * @param string $courseCode * @return EntityCourseFieldValues */ public function setCourseCode($courseCode) { $this->courseCode = $courseCode; return $this; } /** * Get courseCode * * @return string */ public function getCourseCode() { return $this->courseCode; } /** * Set fieldId * * @param integer $fieldId * @return EntityCourseFieldValues */ public function setFieldId($fieldId) { $this->fieldId = $fieldId; return $this; } /** * Get fieldId * * @return integer */ public function getFieldId() { return $this->fieldId; } /** * Set fieldValue * * @param string $fieldValue * @return EntityCourseFieldValues */ public function setFieldValue($fieldValue) { $this->fieldValue = $fieldValue; return $this; } /** * Get fieldValue * * @return string */ public function getFieldValue() { return $this->fieldValue; } /** * Set tms * * @param \DateTime $tms * @return EntityCourseFieldValues */ public function setTms($tms) { $this->tms = $tms; return $this; } /** * Get tms * * @return \DateTime */ public function getTms() { return $this->tms; } }