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.
154 lines
2.6 KiB
154 lines
2.6 KiB
<?php
|
|
|
|
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* EntityCourseFieldValues
|
|
*
|
|
* @Table(name="course_field_values")
|
|
* @Entity
|
|
*/
|
|
class EntityCourseFieldValues
|
|
{
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
|
|
* @Id
|
|
* @GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
private $id;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @Column(name="course_code", type="string", length=40, precision=0, scale=0, nullable=false, unique=false)
|
|
*/
|
|
private $courseCode;
|
|
|
|
/**
|
|
* @var integer
|
|
*
|
|
* @Column(name="field_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
|
|
*/
|
|
private $fieldId;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @Column(name="field_value", type="text", precision=0, scale=0, nullable=true, unique=false)
|
|
*/
|
|
private $fieldValue;
|
|
|
|
/**
|
|
* @var \DateTime
|
|
*
|
|
* @Column(name="tms", type="datetime", precision=0, scale=0, nullable=false, unique=false)
|
|
*/
|
|
private $tms;
|
|
|
|
|
|
/**
|
|
* Get id
|
|
*
|
|
* @return integer
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->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;
|
|
}
|
|
}
|
|
|