123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class SurveyInvitation extends \CourseEntity
- {
- /**
- * @return \Entity\Repository\SurveyInvitationRepository
- */
- public static function repository(){
- return \Entity\Repository\SurveyInvitationRepository::instance();
- }
- /**
- * @return \Entity\SurveyInvitation
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $c_id
- */
- protected $c_id;
- /**
- * @var integer $survey_invitation_id
- */
- protected $survey_invitation_id;
- /**
- * @var string $survey_code
- */
- protected $survey_code;
- /**
- * @var string $user
- */
- protected $user;
- /**
- * @var string $invitation_code
- */
- protected $invitation_code;
- /**
- * @var datetime $invitation_date
- */
- protected $invitation_date;
- /**
- * @var datetime $reminder_date
- */
- protected $reminder_date;
- /**
- * @var integer $answered
- */
- protected $answered;
- /**
- * @var integer $session_id
- */
- protected $session_id;
- /**
- * Set c_id
- *
- * @param integer $value
- * @return SurveyInvitation
- */
- 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 survey_invitation_id
- *
- * @param integer $value
- * @return SurveyInvitation
- */
- public function set_survey_invitation_id($value)
- {
- $this->survey_invitation_id = $value;
- return $this;
- }
- /**
- * Get survey_invitation_id
- *
- * @return integer
- */
- public function get_survey_invitation_id()
- {
- return $this->survey_invitation_id;
- }
- /**
- * Set survey_code
- *
- * @param string $value
- * @return SurveyInvitation
- */
- public function set_survey_code($value)
- {
- $this->survey_code = $value;
- return $this;
- }
- /**
- * Get survey_code
- *
- * @return string
- */
- public function get_survey_code()
- {
- return $this->survey_code;
- }
- /**
- * Set user
- *
- * @param string $value
- * @return SurveyInvitation
- */
- public function set_user($value)
- {
- $this->user = $value;
- return $this;
- }
- /**
- * Get user
- *
- * @return string
- */
- public function get_user()
- {
- return $this->user;
- }
- /**
- * Set invitation_code
- *
- * @param string $value
- * @return SurveyInvitation
- */
- public function set_invitation_code($value)
- {
- $this->invitation_code = $value;
- return $this;
- }
- /**
- * Get invitation_code
- *
- * @return string
- */
- public function get_invitation_code()
- {
- return $this->invitation_code;
- }
- /**
- * Set invitation_date
- *
- * @param datetime $value
- * @return SurveyInvitation
- */
- public function set_invitation_date($value)
- {
- $this->invitation_date = $value;
- return $this;
- }
- /**
- * Get invitation_date
- *
- * @return datetime
- */
- public function get_invitation_date()
- {
- return $this->invitation_date;
- }
- /**
- * Set reminder_date
- *
- * @param datetime $value
- * @return SurveyInvitation
- */
- public function set_reminder_date($value)
- {
- $this->reminder_date = $value;
- return $this;
- }
- /**
- * Get reminder_date
- *
- * @return datetime
- */
- public function get_reminder_date()
- {
- return $this->reminder_date;
- }
- /**
- * Set answered
- *
- * @param integer $value
- * @return SurveyInvitation
- */
- public function set_answered($value)
- {
- $this->answered = $value;
- return $this;
- }
- /**
- * Get answered
- *
- * @return integer
- */
- public function get_answered()
- {
- return $this->answered;
- }
- /**
- * Set session_id
- *
- * @param integer $value
- * @return SurveyInvitation
- */
- public function set_session_id($value)
- {
- $this->session_id = $value;
- return $this;
- }
- /**
- * Get session_id
- *
- * @return integer
- */
- public function get_session_id()
- {
- return $this->session_id;
- }
- }
|