123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- <?php
- namespace Entity;
- use Doctrine\ORM\Mapping as ORM;
- /**
- *
- * @license see /license.txt
- * @author autogenerated
- */
- class SharedSurveyQuestion extends \Entity
- {
- /**
- * @return \Entity\Repository\SharedSurveyQuestionRepository
- */
- public static function repository(){
- return \Entity\Repository\SharedSurveyQuestionRepository::instance();
- }
- /**
- * @return \Entity\SharedSurveyQuestion
- */
- public static function create(){
- return new self();
- }
- /**
- * @var integer $question_id
- */
- protected $question_id;
- /**
- * @var integer $survey_id
- */
- protected $survey_id;
- /**
- * @var text $survey_question
- */
- protected $survey_question;
- /**
- * @var text $survey_question_comment
- */
- protected $survey_question_comment;
- /**
- * @var string $type
- */
- protected $type;
- /**
- * @var string $display
- */
- protected $display;
- /**
- * @var integer $sort
- */
- protected $sort;
- /**
- * @var string $code
- */
- protected $code;
- /**
- * @var integer $max_value
- */
- protected $max_value;
- /**
- * Get question_id
- *
- * @return integer
- */
- public function get_question_id()
- {
- return $this->question_id;
- }
- /**
- * Set survey_id
- *
- * @param integer $value
- * @return SharedSurveyQuestion
- */
- public function set_survey_id($value)
- {
- $this->survey_id = $value;
- return $this;
- }
- /**
- * Get survey_id
- *
- * @return integer
- */
- public function get_survey_id()
- {
- return $this->survey_id;
- }
- /**
- * Set survey_question
- *
- * @param text $value
- * @return SharedSurveyQuestion
- */
- public function set_survey_question($value)
- {
- $this->survey_question = $value;
- return $this;
- }
- /**
- * Get survey_question
- *
- * @return text
- */
- public function get_survey_question()
- {
- return $this->survey_question;
- }
- /**
- * Set survey_question_comment
- *
- * @param text $value
- * @return SharedSurveyQuestion
- */
- public function set_survey_question_comment($value)
- {
- $this->survey_question_comment = $value;
- return $this;
- }
- /**
- * Get survey_question_comment
- *
- * @return text
- */
- public function get_survey_question_comment()
- {
- return $this->survey_question_comment;
- }
- /**
- * Set type
- *
- * @param string $value
- * @return SharedSurveyQuestion
- */
- public function set_type($value)
- {
- $this->type = $value;
- return $this;
- }
- /**
- * Get type
- *
- * @return string
- */
- public function get_type()
- {
- return $this->type;
- }
- /**
- * Set display
- *
- * @param string $value
- * @return SharedSurveyQuestion
- */
- public function set_display($value)
- {
- $this->display = $value;
- return $this;
- }
- /**
- * Get display
- *
- * @return string
- */
- public function get_display()
- {
- return $this->display;
- }
- /**
- * Set sort
- *
- * @param integer $value
- * @return SharedSurveyQuestion
- */
- public function set_sort($value)
- {
- $this->sort = $value;
- return $this;
- }
- /**
- * Get sort
- *
- * @return integer
- */
- public function get_sort()
- {
- return $this->sort;
- }
- /**
- * Set code
- *
- * @param string $value
- * @return SharedSurveyQuestion
- */
- public function set_code($value)
- {
- $this->code = $value;
- return $this;
- }
- /**
- * Get code
- *
- * @return string
- */
- public function get_code()
- {
- return $this->code;
- }
- /**
- * Set max_value
- *
- * @param integer $value
- * @return SharedSurveyQuestion
- */
- public function set_max_value($value)
- {
- $this->max_value = $value;
- return $this;
- }
- /**
- * Get max_value
- *
- * @return integer
- */
- public function get_max_value()
- {
- return $this->max_value;
- }
- }
|