12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- class TrackEAttemptCoeff extends \Entity
- {
-
- public static function repository(){
- return \Entity\Repository\TrackEAttemptCoeffRepository::instance();
- }
-
- public static function create(){
- return new self();
- }
-
- protected $id;
-
- protected $attempt_id;
-
- protected $marks_coeff;
-
- public function get_id()
- {
- return $this->id;
- }
-
- public function set_attempt_id($value)
- {
- $this->attempt_id = $value;
- return $this;
- }
-
- public function get_attempt_id()
- {
- return $this->attempt_id;
- }
-
- public function set_marks_coeff($value)
- {
- $this->marks_coeff = $value;
- return $this;
- }
-
- public function get_marks_coeff()
- {
- return $this->marks_coeff;
- }
- }
|