You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
282 lines
4.7 KiB
282 lines
4.7 KiB
<?php
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
namespace Chamilo\CoreBundle\Entity;
|
|
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
|
|
/**
|
|
* SharedSurveyQuestion.
|
|
*
|
|
* @ORM\Table(name="shared_survey_question")
|
|
* @ORM\Entity
|
|
*/
|
|
class SharedSurveyQuestion
|
|
{
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="survey_id", type="integer", nullable=false)
|
|
*/
|
|
protected $surveyId;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="survey_question", type="text", nullable=false)
|
|
*/
|
|
protected $surveyQuestion;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="survey_question_comment", type="text", nullable=false)
|
|
*/
|
|
protected $surveyQuestionComment;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="type", type="string", length=250, nullable=false)
|
|
*/
|
|
protected $type;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="display", type="string", length=10, nullable=false)
|
|
*/
|
|
protected $display;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="sort", type="integer", nullable=false)
|
|
*/
|
|
protected $sort;
|
|
|
|
/**
|
|
* @var string
|
|
*
|
|
* @ORM\Column(name="code", type="string", length=40, nullable=false)
|
|
*/
|
|
protected $code;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="max_value", type="integer", nullable=false)
|
|
*/
|
|
protected $maxValue;
|
|
|
|
/**
|
|
* @var int
|
|
*
|
|
* @ORM\Column(name="question_id", type="integer")
|
|
* @ORM\Id
|
|
* @ORM\GeneratedValue(strategy="IDENTITY")
|
|
*/
|
|
protected $questionId;
|
|
|
|
/**
|
|
* Set surveyId.
|
|
*
|
|
* @param int $surveyId
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setSurveyId($surveyId)
|
|
{
|
|
$this->surveyId = $surveyId;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get surveyId.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getSurveyId()
|
|
{
|
|
return $this->surveyId;
|
|
}
|
|
|
|
/**
|
|
* Set surveyQuestion.
|
|
*
|
|
* @param string $surveyQuestion
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setSurveyQuestion($surveyQuestion)
|
|
{
|
|
$this->surveyQuestion = $surveyQuestion;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get surveyQuestion.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSurveyQuestion()
|
|
{
|
|
return $this->surveyQuestion;
|
|
}
|
|
|
|
/**
|
|
* Set surveyQuestionComment.
|
|
*
|
|
* @param string $surveyQuestionComment
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setSurveyQuestionComment($surveyQuestionComment)
|
|
{
|
|
$this->surveyQuestionComment = $surveyQuestionComment;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get surveyQuestionComment.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getSurveyQuestionComment()
|
|
{
|
|
return $this->surveyQuestionComment;
|
|
}
|
|
|
|
/**
|
|
* Set type.
|
|
*
|
|
* @param string $type
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setType($type)
|
|
{
|
|
$this->type = $type;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get type.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getType()
|
|
{
|
|
return $this->type;
|
|
}
|
|
|
|
/**
|
|
* Set display.
|
|
*
|
|
* @param string $display
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setDisplay($display)
|
|
{
|
|
$this->display = $display;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get display.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getDisplay()
|
|
{
|
|
return $this->display;
|
|
}
|
|
|
|
/**
|
|
* Set sort.
|
|
*
|
|
* @param int $sort
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setSort($sort)
|
|
{
|
|
$this->sort = $sort;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get sort.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getSort()
|
|
{
|
|
return $this->sort;
|
|
}
|
|
|
|
/**
|
|
* Set code.
|
|
*
|
|
* @param string $code
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setCode($code)
|
|
{
|
|
$this->code = $code;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get code.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getCode()
|
|
{
|
|
return $this->code;
|
|
}
|
|
|
|
/**
|
|
* Set maxValue.
|
|
*
|
|
* @param int $maxValue
|
|
*
|
|
* @return SharedSurveyQuestion
|
|
*/
|
|
public function setMaxValue($maxValue)
|
|
{
|
|
$this->maxValue = $maxValue;
|
|
|
|
return $this;
|
|
}
|
|
|
|
/**
|
|
* Get maxValue.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getMaxValue()
|
|
{
|
|
return $this->maxValue;
|
|
}
|
|
|
|
/**
|
|
* Get questionId.
|
|
*
|
|
* @return int
|
|
*/
|
|
public function getQuestionId()
|
|
{
|
|
return $this->questionId;
|
|
}
|
|
}
|
|
|