123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class StudentPublicationAssignment extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\StudentPublicationAssignmentRepository
- */
- public static function repository(){
- return \Entity\Repository\StudentPublicationAssignmentRepository::instance();
- }
- /**
- * @return \Entity\StudentPublicationAssignment
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var integer $id
- */
- protected $id;
- /**
- * @var datetime $expires_on
- */
- protected $expires_on;
- /**
- * @var datetime $ends_on
- */
- protected $ends_on;
- /**
- * @var boolean $add_to_calendar
- */
- protected $add_to_calendar;
- /**
- * @var boolean $enable_qualification
- */
- protected $enable_qualification;
- /**
- * @var integer $publication_id
- */
- protected $publication_id;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return StudentPublicationAssignment
- */
- public function set_c_id($value)
- {
- $this->c_id = $value;
- return $this;
- }
- /**
- * Get c_id
- *
- * @return integer
- */
- public function get_c_id()
- {
- return $this->c_id;
- }
- /**
- * Set id
- *
- * @param integer $value
- * @return StudentPublicationAssignment
- */
- public function set_id($value)
- {
- $this->id = $value;
- return $this;
- }
- /**
- * Get id
- *
- * @return integer
- */
- public function get_id()
- {
- return $this->id;
- }
- /**
- * Set expires_on
- *
- * @param datetime $value
- * @return StudentPublicationAssignment
- */
- public function set_expires_on($value)
- {
- $this->expires_on = $value;
- return $this;
- }
- /**
- * Get expires_on
- *
- * @return datetime
- */
- public function get_expires_on()
- {
- return $this->expires_on;
- }
- /**
- * Set ends_on
- *
- * @param datetime $value
- * @return StudentPublicationAssignment
- */
- public function set_ends_on($value)
- {
- $this->ends_on = $value;
- return $this;
- }
- /**
- * Get ends_on
- *
- * @return datetime
- */
- public function get_ends_on()
- {
- return $this->ends_on;
- }
- /**
- * Set add_to_calendar
- *
- * @param boolean $value
- * @return StudentPublicationAssignment
- */
- public function set_add_to_calendar($value)
- {
- $this->add_to_calendar = $value;
- return $this;
- }
- /**
- * Get add_to_calendar
- *
- * @return boolean
- */
- public function get_add_to_calendar()
- {
- return $this->add_to_calendar;
- }
- /**
- * Set enable_qualification
- *
- * @param boolean $value
- * @return StudentPublicationAssignment
- */
- public function set_enable_qualification($value)
- {
- $this->enable_qualification = $value;
- return $this;
- }
- /**
- * Get enable_qualification
- *
- * @return boolean
- */
- public function get_enable_qualification()
- {
- return $this->enable_qualification;
- }
- /**
- * Set publication_id
- *
- * @param integer $value
- * @return StudentPublicationAssignment
- */
- public function set_publication_id($value)
- {
- $this->publication_id = $value;
- return $this;
- }
- /**
- * Get publication_id
- *
- * @return integer
- */
- public function get_publication_id()
- {
- return $this->publication_id;
- }
- }
|