123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- class ThematicAdvance extends \CourseEntity
- {
-
- public static function repository(){
- return \Entity\Repository\ThematicAdvanceRepository::instance();
- }
-
- public static function create(){
- return new self();
- }
-
- protected $c_id;
-
- protected $id;
-
- protected $thematic_id;
-
- protected $attendance_id;
-
- protected $content;
-
- protected $start_date;
-
- protected $duration;
-
- protected $done_advance;
-
- public function set_c_id($value)
- {
- $this->c_id = $value;
- return $this;
- }
-
- public function get_c_id()
- {
- return $this->c_id;
- }
-
- public function set_id($value)
- {
- $this->id = $value;
- return $this;
- }
-
- public function get_id()
- {
- return $this->id;
- }
-
- public function set_thematic_id($value)
- {
- $this->thematic_id = $value;
- return $this;
- }
-
- public function get_thematic_id()
- {
- return $this->thematic_id;
- }
-
- public function set_attendance_id($value)
- {
- $this->attendance_id = $value;
- return $this;
- }
-
- public function get_attendance_id()
- {
- return $this->attendance_id;
- }
-
- public function set_content($value)
- {
- $this->content = $value;
- return $this;
- }
-
- public function get_content()
- {
- return $this->content;
- }
-
- public function set_start_date($value)
- {
- $this->start_date = $value;
- return $this;
- }
-
- public function get_start_date()
- {
- return $this->start_date;
- }
-
- public function set_duration($value)
- {
- $this->duration = $value;
- return $this;
- }
-
- public function get_duration()
- {
- return $this->duration;
- }
-
- public function set_done_advance($value)
- {
- $this->done_advance = $value;
- return $this;
- }
-
- public function get_done_advance()
- {
- return $this->done_advance;
- }
- }
|