123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * TrackExerciseAttemptJury
- *
- * @ORM\Table(name="track_attempt_jury")
- * @ORM\Entity
- */
- class TrackExerciseAttemptJury
- {
- /**
- * @var integer
- *
- * @ORM\Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
- * @ORM\Id
- * @ORM\GeneratedValue(strategy="IDENTITY")
- */
- private $id;
- /**
- * @var integer
- *
- * @ORM\Column(name="exe_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $exeId;
- /**
- * @var integer
- *
- * @ORM\Column(name="question_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $questionId;
- /**
- * @var float
- *
- * @ORM\Column(name="score", type="float", precision=0, scale=0, nullable=true, unique=false)
- */
- private $score;
- /**
- * @var integer
- *
- * @ORM\Column(name="jury_user_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $juryUserId;
- /**
- * @var integer
- *
- * @ORM\Column(name="question_score_name_id", type="integer", precision=0, scale=0, nullable=true, unique=false)
- */
- private $questionScoreNameId;
- /**
- * @ORM\ManyToOne(targetEntity="TrackExercise")
- * @ORM\JoinColumn(name="exe_id", referencedColumnName="exe_id")
- */
- private $attempt;
- /**
- * @return TrackExercise
- */
- public function getAttempt()
- {
- return $this->attempt;
- }
- /**
- * @param TrackExercise $attempt
- */
- public function setAttempt(TrackExercise $attempt)
- {
- $this->attempt = $attempt;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function getId()
- {
- return $this->id;
- }
- /**
- * Set exeId
- *
- * @param integer $exeId
- * @return TrackExerciseAttemptJury
- */
- public function setExeId($exeId)
- {
- $this->exeId = $exeId;
- return $this;
- }
- /**
- * Get exeId
- *
- * @return integer
- */
- public function getExeId()
- {
- return $this->exeId;
- }
- /**
- * Set questionId
- *
- * @param integer $questionId
- * @return TrackExerciseAttemptJury
- */
- public function setQuestionId($questionId)
- {
- $this->questionId = $questionId;
- return $this;
- }
- /**
- * Get questionId
- *
- * @return integer
- */
- public function getQuestionId()
- {
- return $this->questionId;
- }
- /**
- * Set score
- *
- * @param float $score
- * @return TrackExerciseAttemptJury
- */
- public function setScore($score)
- {
- $this->score = $score;
- return $this;
- }
- /**
- * Get score
- *
- * @return float
- */
- public function getScore()
- {
- return $this->score;
- }
- /**
- * Set juryMemberId
- *
- * @param integer $juryUserId
- * @return TrackExerciseAttemptJury
- */
- public function setJuryUserId($juryUserId)
- {
- $this->juryUserId = $juryUserId;
- return $this;
- }
- /**
- * Get juryMemberId
- *
- * @return integer
- */
- public function getJuryUserId()
- {
- return $this->juryUserId;
- }
- /**
- * Set questionScoreNameId
- *
- * @param integer $questionScoreNameId
- * @return TrackExerciseAttemptJury
- */
- public function setQuestionScoreNameId($questionScoreNameId)
- {
- $this->questionScoreNameId = $questionScoreNameId;
- return $this;
- }
- /**
- * Get questionScoreNameId
- *
- * @return integer
- */
- public function getQuestionScoreNameId()
- {
- return $this->questionScoreNameId;
- }
- }
|