EntityTrackEAttemptCoeff.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. use Doctrine\ORM\Mapping as ORM;
  3. /**
  4. * EntityTrackEAttemptCoeff
  5. *
  6. * @Table(name="track_e_attempt_coeff")
  7. * @Entity
  8. */
  9. class EntityTrackEAttemptCoeff
  10. {
  11. /**
  12. * @var integer
  13. *
  14. * @Column(name="id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  15. * @Id
  16. * @GeneratedValue(strategy="IDENTITY")
  17. */
  18. private $id;
  19. /**
  20. * @var integer
  21. *
  22. * @Column(name="attempt_id", type="integer", precision=0, scale=0, nullable=false, unique=false)
  23. */
  24. private $attemptId;
  25. /**
  26. * @var float
  27. *
  28. * @Column(name="marks_coeff", type="float", precision=0, scale=0, nullable=true, unique=false)
  29. */
  30. private $marksCoeff;
  31. /**
  32. * Get id
  33. *
  34. * @return integer
  35. */
  36. public function getId()
  37. {
  38. return $this->id;
  39. }
  40. /**
  41. * Set attemptId
  42. *
  43. * @param integer $attemptId
  44. * @return EntityTrackEAttemptCoeff
  45. */
  46. public function setAttemptId($attemptId)
  47. {
  48. $this->attemptId = $attemptId;
  49. return $this;
  50. }
  51. /**
  52. * Get attemptId
  53. *
  54. * @return integer
  55. */
  56. public function getAttemptId()
  57. {
  58. return $this->attemptId;
  59. }
  60. /**
  61. * Set marksCoeff
  62. *
  63. * @param float $marksCoeff
  64. * @return EntityTrackEAttemptCoeff
  65. */
  66. public function setMarksCoeff($marksCoeff)
  67. {
  68. $this->marksCoeff = $marksCoeff;
  69. return $this;
  70. }
  71. /**
  72. * Get marksCoeff
  73. *
  74. * @return float
  75. */
  76. public function getMarksCoeff()
  77. {
  78. return $this->marksCoeff;
  79. }
  80. }