123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class TrackEAttemptRecording extends \Entity
- {
- /**
- * @return \Entity\Repository\TrackEAttemptRecordingRepository
- */
- public static function repository(){
- return \Entity\Repository\TrackEAttemptRecordingRepository::instance();
- }
- /**
- * @return \Entity\TrackEAttemptRecording
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var integer $exe_id
- */
- protected $exe_id;
- /**
- * @var integer $question_id
- */
- protected $question_id;
- /**
- * @var integer $marks
- */
- protected $marks;
- /**
- * @var datetime $insert_date
- */
- protected $insert_date;
- /**
- * @var integer $author
- */
- protected $author;
- /**
- * @var text $teacher_comment
- */
- protected $teacher_comment;
- /**
- * @var integer $session_id
- */
- protected $session_id;
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set exe_id
- *
- * @param integer $value
- * @return TrackEAttemptRecording
- */
- public function set_exe_id($value)
- {
- $this->exe_id = $value;
- return $this;
- }
- /**
- * Get exe_id
- *
- * @return integer
- */
- public function get_exe_id()
- {
- return $this->exe_id;
- }
- /**
- * Set question_id
- *
- * @param integer $value
- * @return TrackEAttemptRecording
- */
- public function set_question_id($value)
- {
- $this->question_id = $value;
- return $this;
- }
- /**
- * Get question_id
- *
- * @return integer
- */
- public function get_question_id()
- {
- return $this->question_id;
- }
- /**
- * Set marks
- *
- * @param integer $value
- * @return TrackEAttemptRecording
- */
- public function set_marks($value)
- {
- $this->marks = $value;
- return $this;
- }
- /**
- * Get marks
- *
- * @return integer
- */
- public function get_marks()
- {
- return $this->marks;
- }
- /**
- * Set insert_date
- *
- * @param datetime $value
- * @return TrackEAttemptRecording
- */
- public function set_insert_date($value)
- {
- $this->insert_date = $value;
- return $this;
- }
- /**
- * Get insert_date
- *
- * @return datetime
- */
- public function get_insert_date()
- {
- return $this->insert_date;
- }
- /**
- * Set author
- *
- * @param integer $value
- * @return TrackEAttemptRecording
- */
- public function set_author($value)
- {
- $this->author = $value;
- return $this;
- }
- /**
- * Get author
- *
- * @return integer
- */
- public function get_author()
- {
- return $this->author;
- }
- /**
- * Set teacher_comment
- *
- * @param text $value
- * @return TrackEAttemptRecording
- */
- public function set_teacher_comment($value)
- {
- $this->teacher_comment = $value;
- return $this;
- }
- /**
- * Get teacher_comment
- *
- * @return text
- */
- public function get_teacher_comment()
- {
- return $this->teacher_comment;
- }
- /**
- * Set session_id
- *
- * @param integer $value
- * @return TrackEAttemptRecording
- */
- public function set_session_id($value)
- {
- $this->session_id = $value;
- return $this;
- }
- /**
- * Get session_id
- *
- * @return integer
- */
- public function get_session_id()
- {
- return $this->session_id;
- }
- }
|